【Python】numpy的小函数

Backto Python Index

均分函数 numpy.arange() 和 numpy.linspace()

前者按整数步长均分,后者份数浮点均分

>> np.arange(3, 7, 2)
[3 5]

numpy.linspace(start, stop, num=50, endpoint=True, retstep=False)

>>> np.linspace(2.0, 3.0, num=5)
[ 2.  2.25  2.5  2.75  3.  ]
>>> np.linspace(2.0, 3.0, num=5, endpoint=False)
[ 2.  2.2  2.4  2.6  2.8]

你可能感兴趣的:(python,numpy,Python)