Hi,
This is Pratim. I want to plot energy over a volume of cylinder such that its surfaces show energy in terms of color mapping. It will be a 4D plot. Can you please suggest me any suitable option.

 Respuesta aceptada

Bjorn Gustavsson
Bjorn Gustavsson el 26 de Sept. de 2019

0 votos

Perhaps you're asking for something like this:
[X,Y,Z] = cylinder(linspace(1,1.5,100),100); % You have to specify your cylinder, somehow - this is only an example
Q = peaks(100); % Some arbitrary values in a size that matches the size of X Y and Z
surf(X,Y,Z,Q),shading flat % display your energies on the cylindrical surface
colorbar
HTH

1 comentario

Pratim Saha
Pratim Saha el 26 de Sept. de 2019
The cylinder function generates a hollow cylinder but I need the top surface as well. I need to use 3d array for each of x, y, z and q to define the volume. Hence, I chose polar coordinate to start with. Then converted it into cartesian using pol2kart function. But surf is unable to handle 3d array. Can you please tell any alternative excluding scatter, slice commands.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Preguntada:

el 26 de Sept. de 2019

Comentada:

el 26 de Sept. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by