Tranposes a matrix. Transposing an M x N
matrix flips it around the center diagonal and results in an N x M
matrix.
Transpose of a 3 x 3 matrix
Floating-point matrix transpose.
- Parameters
-
[in] | *pSrc | points to the input matrix |
[out] | *pDst | points to the output matrix |
- Returns
- The function returns either
ARM_MATH_SIZE_MISMATCH
or ARM_MATH_SUCCESS
based on the outcome of size checking.
Q15 matrix transpose.
- Parameters
-
[in] | *pSrc | points to the input matrix |
[out] | *pDst | points to the output matrix |
- Returns
- The function returns either
ARM_MATH_SIZE_MISMATCH
or ARM_MATH_SUCCESS
based on the outcome of size checking.
Q31 matrix transpose.
- Parameters
-
[in] | *pSrc | points to the input matrix |
[out] | *pDst | points to the output matrix |
- Returns
- The function returns either
ARM_MATH_SIZE_MISMATCH
or ARM_MATH_SUCCESS
based on the outcome of size checking.