原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.matlib.ones.html
校对:(虚位以待)
numpy.matlib.
ones
(shape, dtype=None, order='C')[source]矩阵的一。
返回给定形状和类型的矩阵,用一个填充。
参数: | shape:{sequence of ints,int}
dtype:数据类型,可选
order:{'C','F'},可选
|
---|---|
返回: | out:matrix
|
也可以看看
ones
matlib.zeros
笔记
如果shape
具有长度一即(N,)
或者是标量N
,则out形状矩阵(1,N)
。
例子
>>> np.matlib.ones((2,3))
matrix([[ 1., 1., 1.],
[ 1., 1., 1.]])
>>> np.matlib.ones(2)
matrix([[ 1., 1.]])