Beautiful!
Many thanks John.

Gary R.

John Hunter wrote:
<snip>
> You can manually turn off autoscaling on the axes instance with the
> following, and both scatter and plot should then work as you want.
> 
> ax1 = subplot(121)
> axis('off')
> ax1.imshow(rand(20,20))
> ax2 = subplot(122)
> axis('off')
> ax2.imshow(rand(20,20))
> 
> ax1.set_autoscale_on(False)
> #ax1.scatter([5,10],[5,10])    # note 2
> ax1.plot([5,10],[5,10], 'o')     # note 3
> show()

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to