how to plot symbolic equation
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
zilai si
le 21 Mai 2019
Réponse apportée : Star Strider
le 21 Mai 2019
hello, everyone. I wonder how to plot a symbolic equation like this:
0 commentaires
Réponse acceptée
Star Strider
le 21 Mai 2019
That requires a bit of name-value pair arguments to the fcontour function.
Try this:
syms f(x,y) x y
f(x,y) = x^2 + (3*y/2 - sqrt(abs(x)))^2;
figure
fcontour(f, [-2 2], 'MeshDensity',250, 'LevelList',[3 3])
grid on
The 'LevelList' name-value pair argument is important here, since it will draw the contour where your function equals 3. .
I hope this is not homework. However, it likely requires a bit more familiarity with the MATLAB plot functions than someone just now learning MATLAB is likely to have.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!