Why does this plot not work? Thank's for every help!
Afficher commentaires plus anciens
x = linspace(0.5,8.7,870)
syms y;
solve(4000 == (y/6.5)*(8.7-x),y)
plot(x,y)
Réponses (1)
Roger Stafford
le 24 Déc 2016
It would be better to first solve the equation for y symbolically and then produce a vector of y values:
x = linspace(0.5,8.7,870);
y = 6.5*4000./((8.7-x); % <-- The symbolic solution
plot(x,y)
Catégories
En savoir plus sur Symbolic Math Toolbox 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!