我想将轴的弧度单位写成与以下成比例\pi
:类似于
$\frac{\pi}{4}$, $\frac{\pi}{2}$, ...
代替
0.785, 1.5707 ...
有什么标准方法吗?例如,我应该在以下代码中添加什么?
from pylab import *
x=arange(-10.0,10.0,0.1)
y= arctan(x)
plot(x,y,'b.')
show()
我找到了这个例子http://matplotlib.sourceforge.net/examples/units/radian_demo.html但它不起作用,因为我没有 basic_units 模块。
谢谢!