Transpose [[3,1,0],[-1,0,4],[2,2,1]]
Problem
Solution
Identify the definition of a matrix transpose, which involves swapping the row indices with the column indices.
Rewrite the first row of the original matrix as the first column of the new matrix.
Rewrite the second row of the original matrix as the second column of the new matrix.
Rewrite the third row of the original matrix as the third column of the new matrix.
Final Answer
Want more problems? Check here!