Borrar filtros
Borrar filtros

How to plot complex function of two variables?

5 visualizaciones (últimos 30 días)
priya anjali
priya anjali el 8 de Jun. de 2021
Comentada: priya anjali el 8 de Jun. de 2021
How to plot complex function, in MATLAB like surface plot.
x and y are variable. Should I separately plot for positive sign and negative sign.

Respuesta aceptada

KSSV
KSSV el 8 de Jun. de 2021
x = linspace(0,1) ;
y = linspace(0,1) ;
[X,Y] = meshgrid(x,y) ;
Z = 1i/2*sqrt(X./Y) ;
surf(X,Y,abs(Z))
hold on
surf(X,Y,-abs(Z))
  1 comentario
priya anjali
priya anjali el 8 de Jun. de 2021
Do you know the type of this graph?
Like nature(soliton, parabolic, or any other)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by