On 04/20/2010 10:29 AM, Ryan May wrote:
> On Tue, Apr 20, 2010 at 8:58 AM, Nikolaus Rath <nikol...@rath.org> wrote:
>> Hello,
>>
>> I'm trying to plot something from 0 to 2pi:
>>
>>    fig = plt.figure()
>>    ax = fig.add_subplot(111)
>>    ax.set_title('Radial Magnetic Field')
>>    ax.set_ylabel(r'Poloidal Angle $\theta$')
>>    ax.set_xlabel(r'Toroidal Angle $\phi$')
>>
>>    ax.set_xticks([0, 2 * math.pi])
>>    ax.set_xticklabels(['0', r'$2\pi$'])
>>    ax.set_yticklabels([r'$-\pi$', r'$\pi$'])
>>    ax.set_yticks([-math.pi, math.pi])
>>
>>    ax.set_xlim(xmin=0, xmax=2 * math.pi)
>>    ax.set_ylim(ymin= -math.pi, ymax=math.pi)
> 
> I don't see the problem here, I get the ticks as specified.  What
> version of matplotlib are you using? What backend are you using?

Actually, now that I tried it again, it suddenly works. Strange... Sorry
for the pointless mail.


Best,

   -Nikolaus

-- 
 »Time flies like an arrow, fruit flies like a Banana.«

  PGP fingerprint: 5B93 61F8 4EA2 E279 ABF6  02CF A9AD B7F8 AE4E 425C

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to