本文簡要介紹 python 語言中 numpy.matlib.ones
的用法。
用法:
matlib.ones(shape, dtype=None, order='C')
矩陣。
返回一個給定形狀和類型的矩陣,用一個填充。
- shape: {整數序列,整數}
矩陣的形狀
- dtype: 數據類型,可選
矩陣所需的數據類型,默認為 np.float64。
- order: {‘C’, ‘F’},可選
是否以 C- 或 Fortran-contiguous 順序存儲矩陣,默認為“C”。
- out: 矩陣
給定形狀、數據類型和順序的矩陣。
參數:
返回:
注意:
如果numpy.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.]])
相關用法
- Python numpy matlib.randn用法及代碼示例
- Python numpy matlib.eye用法及代碼示例
- Python numpy matlib.rand用法及代碼示例
- Python numpy matlib.zeros用法及代碼示例
- Python numpy matlib.empty用法及代碼示例
- Python numpy matlib.identity用法及代碼示例
- Python numpy matlib.repmat用法及代碼示例
- Python numpy matrix.A1用法及代碼示例
- Python numpy matrix.T用法及代碼示例
- Python numpy matrix.I用法及代碼示例
- Python numpy mat用法及代碼示例
- Python numpy matrix.partition用法及代碼示例
- Python numpy matrix.transpose用法及代碼示例
- Python numpy matrix.itemsize用法及代碼示例
- Python numpy matrix.newbyteorder用法及代碼示例
- Python numpy matrix.sort用法及代碼示例
- Python numpy matrix.std用法及代碼示例
- Python numpy matrix.tolist用法及代碼示例
- Python numpy matrix.strides用法及代碼示例
- Python numpy matmul用法及代碼示例
- Python numpy matrix.squeeze用法及代碼示例
- Python numpy matrix.getA1用法及代碼示例
- Python numpy matrix.tostring用法及代碼示例
- Python numpy matrix.setfield用法及代碼示例
- Python numpy matrix.resize用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.matlib.ones。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。