help-octave
[Top][All Lists]
Advanced

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

Re: howto plot data in 3D


From: Martin Helm
Subject: Re: howto plot data in 3D
Date: Tue, 19 Oct 2010 01:32:32 +0200
User-agent: KMail/1.13.5 (Linux/2.6.34.7-0.4-desktop; KDE/4.5.2; x86_64; ; )

Am Dienstag, 19. Oktober 2010, 00:52:35 schrieb pathematica:
> Thanks Ben, that works perfectly.
> 
> Please excuse another question!
> 
> I have plotted three planes and I was hoping to have each one a different
> color. Is this possible?
> 
> Best wishes

Something like that? It gives a red a green and a blue mesh 

colormap([1 0  0; 0 1 0; 0 0 1])
[x, y, z] = peaks;
mesh (x, y, z, ones(size(z)))
hold on
mesh (x, y, z+5, 2*ones(size(z)))
hold on
mesh (x, y, z+10, 3*ones(size(z)))


reply via email to

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