Filter löschen
Filter löschen

hi, can any one help me please.

1 Ansicht (letzte 30 Tage)
zakir hussain
zakir hussain am 1 Mai 2017
Beantwortet: hmi amid am 1 Mai 2017
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

Akzeptierte Antwort

hmi amid
hmi amid am 1 Mai 2017
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.

Weitere Antworten (0)

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by