if statement in Matlab
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sergey Dukman
el 16 de Mayo de 2015
Comentada: Star Strider
el 16 de Mayo de 2015
I running the following if-loop:
sigmat=24;
n=1.5;
sigmam=20;
N=200;
si=sigmat/n;
if si>=sigmam
F=N/si;
end;
But after this script is run out I can not claim a value of F in command window (F should be equal 12,5). Where did I mistake in this script?
0 comentarios
Respuesta aceptada
Star Strider
el 16 de Mayo de 2015
Editada: Star Strider
el 16 de Mayo de 2015
The problem is that ‘si’ is 16 and ‘sigmam’ is 20. The if condition always evaluates to false, and the if block never executes.
Also, if you want ‘F’ to output to the Command Window, remove the semicolon at the end of the line. The presence of the semicolon suppresses Command Window output:
F=N/si
----------
I like your avatar!
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Function Creation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!