フィルターのクリア

3D plotting on 3 D axis....

1 回表示 (過去 30 日間)
Ahmed Hussein
Ahmed Hussein 2014 年 10 月 2 日
コメント済み: Ahmed Hussein 2014 年 10 月 3 日
I have 3D room with X,Y,Z dimensions. I need to represent the temperature in this room, and the values changing with positions. So for the dimensions below I have 27 values.
For example:
X[1 2 3]; Y[1 2 3]; Z[1 2 3];
T[1:27];

採用された回答

Image Analyst
Image Analyst 2014 年 10 月 2 日
It sounds like you don't have a completely solid 3D volumetric image, like an (x,y,z) triplet for every single possible (x,y,z) location, and just have scattered data at a few of the possible locations. Perhaps you can use scatter3()?
scatter3(x, y, z, sizes, colors);
You'd set up colors to be different colors depending on the value of T. This would be like a 2.5D perspective rendering of a scatterplot of a bunch of points where the points colors depends on their temperature.
  1 件のコメント
Ahmed Hussein
Ahmed Hussein 2014 年 10 月 3 日
Thank you very much, I will try it

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeScatter Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by