原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.ones.html
校对:(虚位以待)
numpy.
ones
(shape, dtype=None, order='C')[source]返回给定形状和类型的新数组,用数字填充。
参数: | shape:int或ints序列
dtype:数据类型,可选
order:{'C','F'},可选
|
---|---|
返回: | out:ndarray
|
例子
>>> np.ones(5)
array([ 1., 1., 1., 1., 1.])
>>> np.ones((5,), dtype=np.int)
array([1, 1, 1, 1, 1])
>>> np.ones((2, 1))
array([[ 1.],
[ 1.]])
>>> s = (2,2)
>>> np.ones(s)
array([[ 1., 1.],
[ 1., 1.]])