help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: plotting pointclouds


From: David Bateman
Subject: Re: plotting pointclouds
Date: Mon, 30 Jun 2008 09:43:19 +0200
User-agent: Thunderbird 2.0.0.12 (X11/20080306)

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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]