numpy.matrix_transpose#

numpy.matrix_transpose(x, /)[source]#

转置矩阵(或矩阵堆栈)x

此函数与数组 API 兼容。

参数:
xarray_like

输入数组,形状为 (…, M, N),其最内层两个维度形成 MxN 矩阵。

返回值:
outndarray

一个包含每个矩阵转置的数组,形状为 (…, N, M)。

参见

transpose

通用转置方法。

示例

>>> import numpy as np
>>> np.matrix_transpose([[1, 2], [3, 4]])
array([[1, 3],
       [2, 4]])
>>> np.matrix_transpose([[[1, 2], [3, 4]], [[5, 6], [7, 8]]])
array([[[1, 3],
        [2, 4]],
       [[5, 7],
        [6, 8]]])