フィルターのクリア

How do I plot the following eq. x.^2+(y-z).^2 = 2*z.^2

7 ビュー (過去 30 日間)
Anton Larsson
Anton Larsson 2017 年 3 月 30 日
回答済み: KSSV 2017 年 3 月 30 日
Cheers!

採用された回答

KSSV
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 件)

カテゴリ

Help Center および File ExchangeScalar Volume Data についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by