フィルターのクリア

hi, can any one help me please.

1 回表示 (過去 30 日間)
zakir hussain
zakir hussain 2017 年 5 月 1 日
回答済み: hmi amid 2017 年 5 月 1 日
This is my matlab code t = 2*10^-9; L = 50*10^-6; R = 50*10^-9; u = (R+t)^2 - R^2; e(u) = sqrt( 1 - (( R^2 + u ) / ( (L/2)^2 + u))); I am getting error while it runs

採用された回答

hmi amid
hmi amid 2017 年 5 月 1 日
You should not use e(u). Remove (u) after e. Like this down here:
t = 2*10^-9;
L = 50*10^-6;
R = 50*10^-9;
u = (R+t)^2 - R^2;
e = sqrt( 1 - (( R^2 + u ) / ( (L/2)^2 + u)));
Amid.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Types についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by