help-octave
[Top][All Lists]
Advanced

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

Re: Waterfall Plot in Octave


From: PetrSt
Subject: Re: Waterfall Plot in Octave
Date: Wed, 24 Apr 2013 02:02:45 -0700 (PDT)

Take a look at plot3(x,y,z) function, since each column of matrices x, y and
z forms a separate line, it could do what you want.

x = repmat((1:10)',1,10);
y = repmat(1:10,10,1);
z = peaks(10);
pl = plot3(x,y,z);
for ii=1:10, set(pl(ii),'color','k'); end

produces
<http://octave.1599824.n4.nabble.com/file/n4652254/pl3.jpg> 



--
View this message in context: 
http://octave.1599824.n4.nabble.com/Waterfall-Plot-in-Octave-tp4652110p4652254.html
Sent from the Octave - General mailing list archive at Nabble.com.


reply via email to

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