本文簡要介紹 python 語言中 numpy.matlib.empty
的用法。
用法:
matlib.empty(shape, dtype=None, order='C')
返回給定形狀和類型的新矩陣,而不初始化條目。
- shape: int 或 int 的元組
空矩陣的形狀。
- dtype: 數據類型,可選
所需的輸出數據類型。
- order: {‘C’, ‘F’},可選
是否在內存中以行優先(C 風格)或列優先(Fortran-style)順序存儲多維數據。
參數:
注意:
empty
與zeros
不同,它不會將矩陣值設置為零,因此可能會稍微快一些。另一方麵,它需要用戶手動設置數組中的所有值,應謹慎使用。例子:
>>> import numpy.matlib >>> np.matlib.empty((2, 2)) # filled with random data matrix([[ 6.76425276e-320, 9.79033856e-307], # random [ 7.39337286e-309, 3.22135945e-309]]) >>> np.matlib.empty((2, 2), dtype=int) matrix([[ 6600475, 0], # random [ 6586976, 22740995]])
相關用法
- Python numpy matlib.eye用法及代碼示例
- Python numpy matlib.randn用法及代碼示例
- Python numpy matlib.rand用法及代碼示例
- Python numpy matlib.zeros用法及代碼示例
- Python numpy matlib.identity用法及代碼示例
- Python numpy matlib.repmat用法及代碼示例
- 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.empty。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。