numpy.geomspace()生成等比数列数组
2020-02-11 本文已影响0人
老王叔叔
geomspace(start, stop, num=50, endpoint=True, dtype=None, axis=0)
np.geomspace(开始值, 结束值, 数组元素个数=默认50,
是否包含结束值=True, *dtype=None*, *axis=0*)
例子:
>>> np.geomspace(1, 1000, num=4)
array([ 1., 10., 100., 1000.])
>>> np.geomspace(1, 1000, num=3, endpoint=False)
array([ 1., 10., 100.])
>>> np.geomspace(1000, 1, num=4)
array([1000., 100., 10., 1.])
>>> np.geomspace(-1000, -1, num=4)
array([-1000., -100., -10., -1.])