[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Getting black and white mesh plots
From: |
Andreas Weber |
Subject: |
Re: Getting black and white mesh plots |
Date: |
Wed, 27 Mar 2013 22:43:57 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:10.0.12) Gecko/20130116 Icedove/10.0.12 |
Am 27.03.2013 22:38, schrieb asha g:
> What is the octave code for getting black and white mesh plots ?
Try
colormap("white")
[~,~,Z] = peaks ();
surf (Z);
you can also add "-mono" to your print command.
HTH Andy