Error using ==> mrdivide Matrix dimensions must agree.
Ältere Kommentare anzeigen
Why can't I draw y with x
y = exp(1 / x)
x = linspace (0,500,30)
plot(x,y)
Where am I wrong?
Antworten (1)
madhan ravi
am 5 Sep. 2019
Bearbeitet: madhan ravi
am 5 Sep. 2019
x = linspace(0,500,30);
y = exp(1 ./ x);
plot(x,y)
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!