原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.matrix.T.html
校对:(虚位以待)
matrix.
T
返回矩阵的转置。
不共轭!对于复共轭转置,使用.H
。
参数: | 无 |
---|---|
返回: | ret:matrix对象
|
例子
>>> m = np.matrix('[1, 2; 3, 4]')
>>> m
matrix([[1, 2],
[3, 4]])
>>> m.getT()
matrix([[1, 3],
[2, 4]])