Error using ==> mrdivide Matrix dimensions must agree.
Afficher commentaires plus anciens
Why can't I draw y with x
y = exp(1 / x)
x = linspace (0,500,30)
plot(x,y)
Where am I wrong?
Réponses (1)
madhan ravi
le 5 Sep 2019
Modifié(e) : madhan ravi
le 5 Sep 2019
x = linspace(0,500,30);
y = exp(1 ./ x);
plot(x,y)
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!