How do I plot the following eq. x.^2+(y-z).^2 = 2*z.^2
2 ビュー (過去 30 日間)
古いコメントを表示
Cheers!
0 件のコメント
採用された回答
KSSV
2017 年 3 月 30 日
N = 10 ;
x = linspace(0,1,N) ;
y = linspace(0,1,N) ;
z = linspace(0,1,N) ;
[X,Y,Z] = meshgrid(x,y,z) ;
F = X.^2+(Y-Z).^2 -2*Z.^2 ;
isosurface(X,Y,Z,F,0)
doc isosurface
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!