Transpose a matrix A to get A^T where A^T[i,j] = A[j,i]. Converts m×n matrix to n×m matrix by swapping rows and columns. Essential for matrix operations, converting between row and column vectors, and computing symmetric matrix products.
API key for authentication. Get your key at https://finceptbackend.share.zrok.io/auth/register
Input matrix (m × n)
[[1, 2, 3], [4, 5, 6]]