import numpy as np a = np.array([0,30,45,60,90]) print '不同角度的正弦值:' # 通過乘pi/180 轉化爲弧度 print np.sin(a*np.pi/180) print '\n' print '數組中角度 ...
確定! 回上一頁