Definition


image.png

Matrix transpose is found by interchanging the rows and columns of the matrix.

Example

$$ A^T =\begin{bmatrix} a & d \\ b & e \\ c & f \end{bmatrix} $$

Properties


Transopose of Transpose

Other Properties

You can observe other applied properties of the transpose.

Practice with Python


# 2차원 배열 생성
A = np.array([[1, 2, 3],
              [4, 5, 6]])

# 트랜스포즈
transposed_A = np.transpose(A)

print(transposed_A)

You can watch the result!

**[[1 4]
 [2 5]
 [3 6]]**