point coordinates from different domains

조회 수: 1 (최근 30일)
Arash Nabovvati
Arash Nabovvati 2019년 3월 22일
댓글: Walter Roberson 2019년 3월 23일
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.

채택된 답변

Walter Roberson
Walter Roberson 2019년 3월 23일
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
Arash Nabovvati
Arash Nabovvati 2019년 3월 23일
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 2019년 3월 23일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Scatter Plots에 대해 자세히 알아보기

태그

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by