Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
i'm trying to create an if loop so that I can run my program starting with x=1 and increasing by 1 to x =3.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
The conditions are as follows:
if x=2, f=Inf
if x=>2, f=NaN
otherwise run the function, f=log(5/2-x)
x2 = 0;
if x2 = 2;
f = Inf
elseif x2 => 2;
f = NaN
else
f = log(5/2-x2)
x2 = x2+1;
end
What am I doing wrong?
0 comentarios
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!