How to use ezplot ?

10 ビュー (過去 30 日間)
RuiQi
RuiQi 2018 年 2 月 28 日
回答済み: Star Strider 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 Center および File ExchangeFormula Manipulation and Simplification についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by