How to use ezplot ?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
RuiQi
le 28 Fév 2018
Réponse apportée : Star Strider
le 28 Fév 2018
I typed this but nothing shows up
syms x1 x2
f(x1, x2) = x1^2 + 9*x2^2;
ezplot(f);
0 commentaires
Réponse acceptée
Star Strider
le 28 Fév 2018
For a function of two variables, use the ezsurf (or preferably fsurf) function instead:
syms x1 x2
f(x1, x2) = x1^2 + 9*x2^2;
ezsurf(f)
or:
syms x1 x2
f(x1, x2) = x1^2 + 9*x2^2;
fsurf(f)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Calculus 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!