Visualization of 4D Plot

7 ビュー (過去 30 日間)
Pratim Saha
Pratim Saha 2019 年 9 月 26 日
コメント済み: Pratim Saha 2019 年 9 月 26 日
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.

採用された回答

Bjorn Gustavsson
Bjorn Gustavsson 2019 年 9 月 26 日
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 件のコメント
Pratim Saha
Pratim Saha 2019 年 9 月 26 日
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 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by