1. 程式人生 > >python學習日記12numpy與linspace

python學習日記12numpy與linspace

中文網站
https://www.numpy.org.cn/
https://www.numpy.org.cn/user_guide/quickstart_tutorial/the_basics.html#陣列的建立

from numpy import pi
np.linspace( 0, 2, 9 ) # 9 numbers from 0 to 2
array([ 0. , 0.25, 0.5 , 0.75, 1. , 1.25, 1.5 , 1.75, 2. ])
x = np.linspace( 0, 2*pi, 100 ) # useful to evaluate function at lots of points
f = np.sin(x)

英文網站
http://www.numpy.org/