How to use ezplot ?

11 Ansichten (letzte 30 Tage)
RuiQi
RuiQi am 28 Feb. 2018
Beantwortet: Star Strider am 28 Feb. 2018
I typed this but nothing shows up
syms x1 x2
f(x1, x2) = x1^2 + 9*x2^2;
ezplot(f);

Akzeptierte Antwort

Star Strider
Star Strider am 28 Feb. 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)

Weitere Antworten (0)

Kategorien

Mehr zu Formula Manipulation and Simplification finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by