Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

how to fix invalid first data argument

1 visualización (últimos 30 días)
santhosh s
santhosh s el 17 de Ag. de 2019
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
n=1;
for ii=1:0.5:9
t(n)=ii;
if ii>=0
y(n)=-3*ii.^2+5;
n=n+1;
elseif ii<0
y(n)=3*ii.^2+5;
n=n+1;
end
end
plot(t,y)

Respuestas (1)

Star Strider
Star Strider el 17 de Ag. de 2019
Your code runs without error for me.
Note that in your code ‘ii’ is never going to be less than 0, so the entire if block is not necessary.

Community Treasure Hunt

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

Start Hunting!

Translated by