Transpose vs Reshape
Please explain the difference between the Transpose & reshape
1 answers ( 0 marked as helpful)
Reshape allows you to transform your matrix into different shapes of your wish.
Transpose compulsorily transforms a m*n matrix to n*m matrix by flipping rows to columns; meaning the first row in the original matrix becomes the first column in the transposed matrix.