本文簡要介紹 python 語言中 numpy.matlib.rand
的用法。
用法:
matlib.rand(*args)
返回具有給定形狀的隨機值矩陣。
創建給定形狀的矩陣,並使用來自
[0, 1)
上的均勻分布的隨機樣本傳播它。- *args: 參數
輸出的形狀。如果作為 N 個整數給出,每個整數指定一維的大小。如果作為元組給出,則該元組給出完整的形狀。
- out: ndarray
具有由 *args 給出的形狀的隨機值矩陣。
參數:
返回:
例子:
>>> np.random.seed(123) >>> import numpy.matlib >>> np.matlib.rand(2, 3) matrix([[0.69646919, 0.28613933, 0.22685145], [0.55131477, 0.71946897, 0.42310646]]) >>> np.matlib.rand((2, 3)) matrix([[0.9807642 , 0.68482974, 0.4809319 ], [0.39211752, 0.34317802, 0.72904971]])
如果第一個參數是元組,則忽略其他參數:
>>> np.matlib.rand((2, 3), 4) matrix([[0.43857224, 0.0596779 , 0.39804426], [0.73799541, 0.18249173, 0.17545176]])
相關用法
- Python numpy matlib.randn用法及代碼示例
- Python numpy matlib.repmat用法及代碼示例
- Python numpy matlib.eye用法及代碼示例
- Python numpy matlib.zeros用法及代碼示例
- Python numpy matlib.empty用法及代碼示例
- Python numpy matlib.identity用法及代碼示例
- Python numpy matlib.ones用法及代碼示例
- 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.rand。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。