Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: mbed-TFT-example-NCS36510 mbed-Accelerometer-example-NCS36510 mbed-Accelerometer-example-NCS36510
Matrix Transpose
[Matrix Functions]
Tranposes a matrix. More...
Functions | |
arm_status | arm_mat_trans_f32 (const arm_matrix_instance_f32 *pSrc, arm_matrix_instance_f32 *pDst) |
Floating-point matrix transpose. | |
arm_status | arm_mat_trans_q15 (const arm_matrix_instance_q15 *pSrc, arm_matrix_instance_q15 *pDst) |
Q15 matrix transpose. | |
arm_status | arm_mat_trans_q31 (const arm_matrix_instance_q31 *pSrc, arm_matrix_instance_q31 *pDst) |
Q31 matrix transpose. |
Detailed Description
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
Function Documentation
arm_status arm_mat_trans_f32 | ( | const arm_matrix_instance_f32 * | pSrc, |
arm_matrix_instance_f32 * | pDst | ||
) |
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
orARM_MATH_SUCCESS
based on the outcome of size checking.
Definition at line 69 of file arm_mat_trans_f32.c.
arm_status arm_mat_trans_q15 | ( | const arm_matrix_instance_q15 * | pSrc, |
arm_matrix_instance_q15 * | pDst | ||
) |
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
orARM_MATH_SUCCESS
based on the outcome of size checking.
Definition at line 60 of file arm_mat_trans_q15.c.
arm_status arm_mat_trans_q31 | ( | const arm_matrix_instance_q31 * | pSrc, |
arm_matrix_instance_q31 * | pDst | ||
) |
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
orARM_MATH_SUCCESS
based on the outcome of size checking.
Definition at line 60 of file arm_mat_trans_q31.c.
Generated on Tue Jul 12 2022 11:03:12 by
