Borrar filtros
Borrar filtros

3D plotting on 3 D axis....

1 visualización (últimos 30 días)
Ahmed Hussein
Ahmed Hussein el 2 de Oct. de 2014
Comentada: Ahmed Hussein el 3 de Oct. de 2014
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];

Respuesta aceptada

Image Analyst
Image Analyst el 2 de Oct. de 2014
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 comentario
Ahmed Hussein
Ahmed Hussein el 3 de Oct. de 2014
Thank you very much, I will try it

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Scatter 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