本文簡要介紹 python 語言中 numpy.matrix.squeeze
的用法。
用法:
matrix.squeeze(axis=None)
返回一個可能重新整形的矩陣。
有關更多文檔,請參閱
numpy.squeeze
。- axis: 無或int 或整數元組,可選
選擇形狀中長度為 1 的軸的子集。如果選擇了形狀條目大於 1 的軸,則會引發錯誤。
- squeezed: 矩陣
矩陣,但如果它的形狀為 (N, 1),則為 (1, N) 矩陣。
參數:
返回:
注意:
如果 m 有單列,則該列作為矩陣的單行返回。否則返回 m。返回的矩陣或者是 m 本身,或者是 m 的視圖。提供軸關鍵字參數不會影響返回的矩陣,但可能會引發錯誤。
例子:
>>> c = np.matrix([[1], [2]]) >>> c matrix([[1], [2]]) >>> c.squeeze() matrix([[1, 2]]) >>> r = c.T >>> r matrix([[1, 2]]) >>> r.squeeze() matrix([[1, 2]]) >>> m = np.matrix([[1, 2], [3, 4]]) >>> m.squeeze() matrix([[1, 2], [3, 4]])
相關用法
- Python numpy matrix.sort用法及代碼示例
- Python numpy matrix.std用法及代碼示例
- Python numpy matrix.strides用法及代碼示例
- Python numpy matrix.setfield用法及代碼示例
- Python numpy matrix.size用法及代碼示例
- Python numpy matrix.sum用法及代碼示例
- Python numpy matrix.setflags用法及代碼示例
- Python numpy matrix.A1用法及代碼示例
- Python numpy matrix.T用法及代碼示例
- Python numpy matrix.I用法及代碼示例
- Python numpy matrix.partition用法及代碼示例
- Python numpy matrix.transpose用法及代碼示例
- Python numpy matrix.itemsize用法及代碼示例
- Python numpy matrix.newbyteorder用法及代碼示例
- Python numpy matrix.tolist用法及代碼示例
- Python numpy matrix.getA1用法及代碼示例
- Python numpy matrix.tostring用法及代碼示例
- Python numpy matrix.resize用法及代碼示例
- Python numpy matrix.getfield用法及代碼示例
- Python numpy matrix.A用法及代碼示例
- Python numpy matrix.flat用法及代碼示例
- Python numpy matrix.ctypes用法及代碼示例
- Python numpy matrix.nbytes用法及代碼示例
- Python numpy matrix.itemset用法及代碼示例
- Python numpy matrix.min用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.matrix.squeeze。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。