[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to include plot grid?
From: |
forkandwait |
Subject: |
Re: How to include plot grid? |
Date: |
Mon, 16 Apr 2012 04:19:45 +0000 (UTC) |
User-agent: |
Loom/3.14 (http://gmane.org/) |
Terry Duell <tduell <at> iinet.net.au> writes:
>> figure(1);
> grid("on");
> plot(m);
>
> but neither the default plotting nor 'fltk' will add a grid.
I have always run the above like this, with "grid" after the plot is finished:
figure(1);
plot(m);
grid;
Maybe it should work the way you describe for compatibility, but this might get
you started.