Error using ==> mrdivide Matrix dimensions must agree.
Mostrar comentarios más antiguos
Why can't I draw y with x
y = exp(1 / x)
x = linspace (0,500,30)
plot(x,y)
Where am I wrong?
Respuestas (1)
madhan ravi
el 5 de Sept. de 2019
Editada: madhan ravi
el 5 de Sept. de 2019
x = linspace(0,500,30);
y = exp(1 ./ x);
plot(x,y)
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!