Hello dear community, I would like to know if there is a fast way to create a cloud in 3D which consists of points. I would like to get something like this: The points should be written into a simple matrix. Each row should represent one point. Thank you for your help!
Prashant Kumar answered .
2025-11-20
[x,y,z] = ndgrid(1:5:100,1:5:100,1:5:100); scatter3(x(:),y(:),z(:),'.')
