我想寫成成正比\pi
軸的弧度單位:像如何在Python圖中以弧度設置y軸?
$\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模塊這是行不通的。
謝謝!
「我發現這個例子http://matplotlib.sourceforge.net/examples/units/radian_demo.html,但它不起作用,因爲我沒有basic_units模塊。」是的你是。它在Matplotlib的示例文件夾中。 – endolith