How to use ezplot ?

7 次查看(过去 30 天)
RuiQi
RuiQi 2018-2-28
I typed this but nothing shows up
syms x1 x2
f(x1, x2) = x1^2 + 9*x2^2;
ezplot(f);

采纳的回答

Star Strider
Star Strider 2018-2-28
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 个)

类别

Help CenterFile Exchange 中查找有关 Formula Manipulation and Simplification 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by