Borrar filtros
Borrar filtros

How can I change fsurf color according to a third function

3 visualizaciones (últimos 30 días)
Andrea Parizzi
Andrea Parizzi el 4 de Jun. de 2017
Editada: Andrea Parizzi el 8 de Jun. de 2017
Hi,I'm looking for a way to change the color of "fsurf" surfaces according to another function (that's not the one that gives ZData). What I'd like to do is plotting a 3D graph of the absolute value of a complex function and painting it with it's phase.
With "surf" is simple 'cause I can specify the "C" field (Color for each vertex) after the axes functions: I'd define a grid of x and y and then
z = complex(x,y);
fz = some function of z
surf(x,y,abs(fz),angle(fz),'EdgeColor','none');
colormap(hsv)
...
Is there something like this for "fsurf"? Thank you,Andrea.
  3 comentarios
Stephen23
Stephen23 el 5 de Jun. de 2017
Editada: Stephen23 el 5 de Jun. de 2017
@KSSV: MATLAB has a set of functions that plot function handles (such as fsurf, which creates a surface like surf does with numeric data, fmesh, fplot, fplot3, etc). These functions automagically generate an appropriate set of independent data points to plot the function over, such that the main details of the plot are shown. See more of these functions here:
KSSV
KSSV el 5 de Jun. de 2017
Okay introduced in 2016a....I am using a lower version.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by