Tranposes a complex 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
\[ \begin{pmatrix} a_{1,1} & a_{1,2} & a_{1,3} \\ a_{2,1} & a_{2,2} & a_{2,3} \\ a_{3,1} & a_{3,2} & a_{3,3} \\ \end{pmatrix}^T = \begin{pmatrix} a_{1,1} & a_{2,1} & a_{3,1} \\ a_{1,2} & a_{2,2} & a_{3,2} \\ a_{1,3} & a_{2,3} & a_{3,3} \\ \end{pmatrix} \]
◆ arm_mat_cmplx_trans_f16()
Floating-point complex matrix transpose.
- Parameters
-
[in] | pSrc | points to input matrix |
[out] | pDst | points to output matrix |
- Returns
- execution status
◆ arm_mat_cmplx_trans_f32()
Floating-point complex matrix transpose.
- Parameters
-
[in] | pSrc | points to input matrix |
[out] | pDst | points to output matrix |
- Returns
- execution status
◆ arm_mat_cmplx_trans_q15()
- Parameters
-
[in] | pSrc | points to input matrix |
[out] | pDst | points to output matrix |
- Returns
- execution status
◆ arm_mat_cmplx_trans_q31()
- Parameters
-
[in] | pSrc | points to input matrix |
[out] | pDst | points to output matrix |
- Returns
- execution status