Visualization of 4D Plot

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.

 采纳的回答

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 个评论

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.

请先登录,再进行评论。

更多回答(0 个)

类别

标签

Community Treasure Hunt

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

Start Hunting!

Translated by