Implicit function 2D plot
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I am trying to plot a function of the form
y=f(x,y)
That is y as a function of x. Any help?
Thanks
0 commentaires
Réponses (1)
madhan ravi
le 9 Nov 2018
Modifié(e) : madhan ravi
le 9 Nov 2018
fimplicit(@(x,y) x.^2 - y.^2 - 1)
fplot(@(x) sin(x))
syms x y
f(x, y) = sin(x + y)*sin(x*y);
ezplot(f)
8 commentaires
Voir également
Catégories
En savoir plus sur Particle & Nuclear Physics dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!