Plot points in 3-dimensional diagram
Plot points in 3-dimensional diagram
(OP)
Dear all
I have a n*3 matrix storing the 3-dimensional coordinates of n points. Can MATLAB plot these points (with no line inbetween)? Thanks.
I have a n*3 matrix storing the 3-dimensional coordinates of n points. Can MATLAB plot these points (with no line inbetween)? Thanks.





RE: Plot points in 3-dimensional diagram
plot3(A(:,1),A(:,2),A(:,3),'.')
M
--
Dr Michael F Platten