point coordinates from different domains

1 visualización (últimos 30 días)
Arash Nabovvati
Arash Nabovvati el 22 de Mzo. de 2019
Comentada: Walter Roberson el 23 de Mzo. de 2019
hi
I want to plot3 some points with X,Y,Z coordinates from different known domain. for example, X= 1:0.5:10 Y=0:0.2:25 z=0:0.1:4 . I want to set all ponits witch have (X,Y,Z)'s coordinats from all possible member of domains one by one then use plot3 or scatter3 the point (all of them...not random or specific one). I want to use uniform distribution.

Respuesta aceptada

Walter Roberson
Walter Roberson el 23 de Mzo. de 2019
X = 1:0.5:10; Y = 0:0.2:25; Z = 0:0.1:4;
[x, y, z] = ndgrid(X, Y, Z);
pointsize = 15;
scatter3(x(:), y(:), z(:), pointsize);
  2 comentarios
Arash Nabovvati
Arash Nabovvati el 23 de Mzo. de 2019
hi Walter,
thank you. It works.
Now , how could it be possible to make a struct like Points.X -Points.Y-Point.Z? where each point has its own cordinations inside the struct. i am asking this because X Y Z have different dimention.
Walter Roberson
Walter Roberson el 23 de Mzo. de 2019
Points.X = X;
Points.Y = Y;
Points.Z = Z;
??
That would be the non-gridded points without repetitions. If you want the repeated points then there would be equal numbers and you would use
Points.X = x(:);
Points.Y = y(:);
Points.Z = z(:);
or
Points.X = x;
Points.Y = y;
Points.Z = z;
if you want the 3D grids.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Scatter Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by