Borrar filtros
Borrar filtros

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

7 visualizaciones (últimos 30 días)
Anton Larsson
Anton Larsson el 30 de Mzo. de 2017
Respondida: KSSV el 30 de Mzo. de 2017
Cheers!

Respuesta aceptada

KSSV
KSSV el 30 de Mzo. de 2017
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

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by