I am trying to rasterize the fancy arrows drawn by the lovely streamplot()
function, but am running into major problems since the arrows are drawn at a
very late stage (to preserve their aspect ratio).
--
from pylab import *
fig = figure(figsize=(10,5))
x = linspace(-1,1,10)[:, None]
ah, should have been:
ax1.grid()
ax2.grid()
ax1.yaxis.grid(False)
--
This SF.net email is sponsored by Windows:
Build for Windows Store.
http://p.sf.net/sfu/windows-dev2dev___
M
Hi Paul,
thanks for your efforts, I've figured it out by myself by now, with you
pieces of code:
ax1.grid()
ax2.grid()
ax1.xaxis.grid(False)
does the trick :)
--
This SF.net email is sponsored by Windows:
Build for Wind
On Thu, Jun 13, 2013 at 1:33 PM, Daniel Mader <
danielstefanma...@googlemail.com> wrote:
> Hi Paul,
>
> I've modified your suggestion a little, since I don't want a grid for the
> primary axis at all -- unfortunately to no avail, i.e. no grid line at all:
>
> import numpy
>
> import matplotlib
>
>
On Thu, Jun 13, 2013 at 11:40 PM, Sudheer Joseph
wrote:
> Thank you,
> I don't see a way other than starting in normal mode as the moment I type
> plot command it get displayed and I don't need to do a show command.
>
In the qtconsole, you can enter multi-line mode with crtl+enter.
--