필터 지우기
필터 지우기

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 CenterFile Exchange에서 Scalar Volume Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by