Transpose [[200,300,500,250],[100,150,200,300]]
Problem
Solution
Identify the dimensions of the original matrix, which has 2 rows and 4 columns.
Apply the definition of a transpose, which involves switching 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.
Verify the resulting matrix has 4 rows and 2 columns.
Final Answer
Want more problems? Check here!