|
From: Mark B. <ma...@gm...> - 2006-03-07 07:11:17
|
Nikolai -
The axis('equal') does not fix the scales, and place the plot in the
center (as far as I know this mimics matlab behavior). The
axis('scaled') is a variation on this theme that does fix the scale
and puts the plot in the lower left hand corner. Obviously, many more
permutations are possible. If many people think another pylab option
would be crucial we can always add one more.
Mark
--- From: Nikolai Hlubek <nik...@ma...>
Hi everyone
When looking at the little code example below
it can be seen see that you have to mix programming
paradigms to disable autoscaling:
figure(1)
ax =3D subplot(111)
axis((-0.25,2.0,0.0,1.3))
axis('scaled')
ax.set_autoscale_on(False)
Wouldn't another 'axis' option make the
whole thing more consistent?
figure(1)
axis((-0.25,2.0,0.0,1.3))
axis('scaled')
axis(autoscale=3DFalse)
Best regards,
Nikolai
|