plotting pointclouds

David Bateman adb014 at gmail.com
Mon Jun 30 02:43:19 CDT 2008


Johannes Richter wrote:
> Hello,
> 
> I am new with octave, and I want to plot 3-dim points in an 3-dim coordinate system.
> The points are like
> 
> A= [130, 0.2, 8; 152, 0.13, 4.5; 148, 0.39, 7; 189, 0.22, 6.5]
> 
> best regards


scatter3 (A(:,1), A(:,2), A(:,3))

D.


More information about the Help-octave mailing list