本文簡要介紹 python 語言中 numpy.asmatrix
的用法。
用法:
numpy.asmatrix(data, dtype=None)
將輸入解釋為矩陣。
與
matrix
不同,如果輸入已經是矩陣或 ndarray,asmatrix
不會進行複製。相當於matrix(data, copy=False)
。- data: array_like
輸入數據。
- dtype: 數據類型
輸出矩陣的數據類型。
- mat: 矩陣
數據解釋為矩陣。
參數:
返回:
例子:
>>> x = np.array([[1, 2], [3, 4]])
>>> m = np.asmatrix(x)
>>> x[0,0] = 5
>>> m matrix([[5, 2], [3, 4]])
相關用法
- Python numpy asscalar用法及代碼示例
- Python numpy ascontiguousarray用法及代碼示例
- Python numpy asarray_chkfinite用法及代碼示例
- Python numpy asanyarray用法及代碼示例
- Python numpy asarray用法及代碼示例
- Python numpy asfortranarray用法及代碼示例
- Python numpy asfarray用法及代碼示例
- Python numpy any用法及代碼示例
- Python numpy argpartition用法及代碼示例
- Python numpy arctan用法及代碼示例
- Python numpy array用法及代碼示例
- Python numpy array_repr用法及代碼示例
- Python numpy arccos用法及代碼示例
- Python numpy all用法及代碼示例
- Python numpy add用法及代碼示例
- Python numpy around用法及代碼示例
- Python numpy array2string用法及代碼示例
- Python numpy atleast_1d用法及代碼示例
- Python numpy arctan2用法及代碼示例
- Python numpy angle用法及代碼示例
- Python numpy arctanh用法及代碼示例
- Python numpy apply_over_axes用法及代碼示例
- Python numpy arccosh用法及代碼示例
- Python numpy arange用法及代碼示例
- Python numpy argsort用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.asmatrix。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。