How to plot a function of two variable

i want to plot
y=2x(1)^2 + 2x(2)^2 +10(1.1*x(2)^2 +3x(1)^2)^0.5
can any one help me to plot this expression ?

2 件のコメント

madhan ravi
madhan ravi 2019 年 2 月 7 日
Which version are you using and you want a 2D plot in 3D space or 3D plot in 3D space?
manish kumar
manish kumar 2019 年 2 月 7 日
2018a version
if you can help me out on both plot. it will be helpful

サインインしてコメントする。

 採用された回答

KSSV
KSSV 2019 年 2 月 7 日

0 投票

x1 = 0:0.01:1 ; % use your limits
x2 = 0:0.01:1 ; % use your limits
[x1,x2] = meshgrid(x1,x2) ;
y=2*x1.^2 + 2*x2.^2 +10*(1.1*x2.^2 +3*x1.^2).^0.5 ;
surf(x1,x2,y)

その他の回答 (1 件)

Torsten
Torsten 2019 年 2 月 7 日

0 投票

https://de.mathworks.com/help/matlab/ref/surf.html

カテゴリ

タグ

質問済み:

2019 年 2 月 7 日

コメント済み:

2019 年 2 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by