Transpose of [[1, 2, 3], [4, 5, 6]]
Swap the rows and columns of a 2×3 matrix.
Solution
- Matrix A 2×3 [[1, 2, 3], [4, 5, 6]]
- Rule The transpose Aᵀ swaps rows and columns: (Aᵀ)ᵢⱼ = Aⱼᵢ.
- Transpose Aᵀ 3×2 [[1, 4], [2, 5], [3, 6]]
Try a similar problem yourself
Use the Matrix Transpose to solve a similar problem with your own values.
Open the solver