Matrix Transpose
quantlib-numerical
Matrix Transpose
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. [Tier: BASIC, Credits: 1]
POST
Matrix Transpose
Authorizations
API key for authentication. Get your key at https://api.fincept.in/auth/register
Body
application/json
Input matrix (m × n)
Example:
[[1, 2, 3], [4, 5, 6]]