From 9f95ff5b6ba01db09552b84a0ab79607060a2666 Mon Sep 17 00:00:00 2001 From: Ali Labbene Date: Wed, 11 Dec 2019 08:59:21 +0100 Subject: Official ARM version: v5.4.0 Add CMSIS V5.4.0, please refer to index.html available under \docs folder. Note: content of \CMSIS\Core\Include has been copied under \Include to keep the same structure used in existing projects, and thus avoid projects mass update Note: the following components have been removed from ARM original delivery (as not used in ST packages) - CMSIS_EW2018.pdf - .gitattributes - .gitignore - \Device - \CMSIS - \CoreValidation - \DAP - \Documentation - \DoxyGen - \Driver - \Pack - \RTOS\CMSIS_RTOS_Tutorial.pdf - \RTOS\RTX - \RTOS\Template - \RTOS2\RTX - \Utilities - All ARM/GCC projects files are deleted from \DSP, \RTOS and \RTOS2 Change-Id: Ia026c3f0f0d016627a4fb5a9032852c33d24b4d3 --- Documentation/DSP/html/group___matrix_init.html | 299 ------------------------ 1 file changed, 299 deletions(-) delete mode 100644 Documentation/DSP/html/group___matrix_init.html (limited to 'Documentation/DSP/html/group___matrix_init.html') diff --git a/Documentation/DSP/html/group___matrix_init.html b/Documentation/DSP/html/group___matrix_init.html deleted file mode 100644 index 69bc4b1..0000000 --- a/Documentation/DSP/html/group___matrix_init.html +++ /dev/null @@ -1,299 +0,0 @@ - - - - - -Matrix Initialization -CMSIS-DSP: Matrix Initialization - - - - - - - - - - - - - - - -
-
- - - - - - - -
-
CMSIS-DSP -  Version 1.4.7 -
-
CMSIS DSP Software Library
-
-
- -
-
    - -
-
- - - -
-
- -
-
-
- -
- - - - -
- -
- -
- -
-
Matrix Initialization
-
-
- - - - - - - - - - - -

-Functions

void arm_mat_init_f32 (arm_matrix_instance_f32 *S, uint16_t nRows, uint16_t nColumns, float32_t *pData)
 Floating-point matrix initialization.
 
void arm_mat_init_q15 (arm_matrix_instance_q15 *S, uint16_t nRows, uint16_t nColumns, q15_t *pData)
 Q15 matrix initialization.
 
void arm_mat_init_q31 (arm_matrix_instance_q31 *S, uint16_t nRows, uint16_t nColumns, q31_t *pData)
 Q31 matrix initialization.
 
-

Description

-

Initializes the underlying matrix data structure. The functions set the numRows, numCols, and pData fields of the matrix data structure.

-

Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void arm_mat_init_f32 (arm_matrix_instance_f32S,
uint16_t nRows,
uint16_t nColumns,
float32_tpData 
)
-
-
Parameters
- - - - - -
[in,out]*Spoints to an instance of the floating-point matrix structure.
[in]nRowsnumber of rows in the matrix.
[in]nColumnsnumber of columns in the matrix.
[in]*pDatapoints to the matrix data array.
-
-
-
Returns
none
-
Examples:
arm_class_marks_example_f32.c, and arm_matrix_example_f32.c.
-
-

References arm_matrix_instance_f32::numCols, arm_matrix_instance_f32::numRows, and arm_matrix_instance_f32::pData.

- -

Referenced by main().

- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void arm_mat_init_q15 (arm_matrix_instance_q15S,
uint16_t nRows,
uint16_t nColumns,
q15_tpData 
)
-
-
Parameters
- - - - - -
[in,out]*Spoints to an instance of the floating-point matrix structure.
[in]nRowsnumber of rows in the matrix.
[in]nColumnsnumber of columns in the matrix.
[in]*pDatapoints to the matrix data array.
-
-
-
Returns
none
- -

References arm_matrix_instance_q15::numCols, arm_matrix_instance_q15::numRows, and arm_matrix_instance_q15::pData.

- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void arm_mat_init_q31 (arm_matrix_instance_q31S,
uint16_t nRows,
uint16_t nColumns,
q31_tpData 
)
-
-
Parameters
- - - - - -
[in,out]*Spoints to an instance of the floating-point matrix structure.
[in]nRowsnumber of rows in the matrix.
[in]nColumnsnumber of columns in the matrix.
[in]*pDatapoints to the matrix data array.
-
-
-
Returns
none
- -

References arm_matrix_instance_q31::numCols, arm_matrix_instance_q31::numRows, and arm_matrix_instance_q31::pData.

- -
-
-
-
- - - - -- cgit