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___min.html | 344 -------------------------------- 1 file changed, 344 deletions(-) delete mode 100644 Documentation/DSP/html/group___min.html (limited to 'Documentation/DSP/html/group___min.html') diff --git a/Documentation/DSP/html/group___min.html b/Documentation/DSP/html/group___min.html deleted file mode 100644 index ff27f76..0000000 --- a/Documentation/DSP/html/group___min.html +++ /dev/null @@ -1,344 +0,0 @@ - - - - - -Minimum -CMSIS-DSP: Minimum - - - - - - - - - - - - - - - -
-
- - - - - - - -
-
CMSIS-DSP -  Version 1.4.7 -
-
CMSIS DSP Software Library
-
-
- -
-
    - -
-
- - - -
-
- -
-
-
- -
- - - - -
- -
- - -
- - - - - - - - - - - - - - -

-Functions

void arm_min_f32 (float32_t *pSrc, uint32_t blockSize, float32_t *pResult, uint32_t *pIndex)
 Minimum value of a floating-point vector.
 
void arm_min_q15 (q15_t *pSrc, uint32_t blockSize, q15_t *pResult, uint32_t *pIndex)
 Minimum value of a Q15 vector.
 
void arm_min_q31 (q31_t *pSrc, uint32_t blockSize, q31_t *pResult, uint32_t *pIndex)
 Minimum value of a Q31 vector.
 
void arm_min_q7 (q7_t *pSrc, uint32_t blockSize, q7_t *pResult, uint32_t *pIndex)
 Minimum value of a Q7 vector.
 
-

Description

-

Computes the minimum value of an array of data. The function returns both the minimum value and its position within the array. There are separate functions for floating-point, Q31, Q15, and Q7 data types.

-

Function Documentation

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void arm_min_f32 (float32_tpSrc,
uint32_t blockSize,
float32_tpResult,
uint32_t * pIndex 
)
-
-
Parameters
- - - - - -
[in]*pSrcpoints to the input vector
[in]blockSizelength of the input vector
[out]*pResultminimum value returned here
[out]*pIndexindex of minimum value returned here
-
-
-
Returns
none.
-
Examples:
arm_class_marks_example_f32.c, and arm_signal_converge_example_f32.c.
-
-

Referenced by main().

- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void arm_min_q15 (q15_tpSrc,
uint32_t blockSize,
q15_tpResult,
uint32_t * pIndex 
)
-
-
Parameters
- - - - - -
[in]*pSrcpoints to the input vector
[in]blockSizelength of the input vector
[out]*pResultminimum value returned here
[out]*pIndexindex of minimum value returned here
-
-
-
Returns
none.
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void arm_min_q31 (q31_tpSrc,
uint32_t blockSize,
q31_tpResult,
uint32_t * pIndex 
)
-
-
Parameters
- - - - - -
[in]*pSrcpoints to the input vector
[in]blockSizelength of the input vector
[out]*pResultminimum value returned here
[out]*pIndexindex of minimum value returned here
-
-
-
Returns
none.
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void arm_min_q7 (q7_tpSrc,
uint32_t blockSize,
q7_tpResult,
uint32_t * pIndex 
)
-
-
Parameters
- - - - - -
[in]*pSrcpoints to the input vector
[in]blockSizelength of the input vector
[out]*pResultminimum value returned here
[out]*pIndexindex of minimum value returned here
-
-
-
Returns
none.
- -
-
-
-
- - - - -- cgit