Added all the F4 libraries to the project
[fw/stlink] / exampleF4 / CMSIS / DSP_Lib / Source / StatisticsFunctions / arm_max_f32.c
1 /* ----------------------------------------------------------------------   
2 * Copyright (C) 2010 ARM Limited. All rights reserved.   
3 *   
4 * $Date:        15. July 2011  
5 * $Revision:    V1.0.10  
6 *   
7 * Project:          CMSIS DSP Library   
8 * Title:                arm_max_f32.c   
9 *   
10 * Description:  Maximum value of a floating-point vector.   
11 *   
12 * Target Processor: Cortex-M4/Cortex-M3/Cortex-M0
13 *  
14 * Version 1.0.10 2011/7/15 
15 *    Big Endian support added and Merged M0 and M3/M4 Source code.  
16 *   
17 * Version 1.0.3 2010/11/29  
18 *    Re-organized the CMSIS folders and updated documentation.   
19 *    
20 * Version 1.0.2 2010/11/11   
21 *    Documentation updated.    
22 *   
23 * Version 1.0.1 2010/10/05    
24 *    Production release and review comments incorporated.   
25 *   
26 * Version 1.0.0 2010/09/20    
27 *    Production release and review comments incorporated.   
28 * ---------------------------------------------------------------------------- */
29
30 #include "arm_math.h"
31
32 /**   
33  * @ingroup groupStats   
34  */
35
36 /**   
37  * @defgroup Max Maximum   
38  *   
39  * Computes the maximum value of an array of data.    
40  * The function returns both the maximum value and its position within the array.    
41  * There are separate functions for floating-point, Q31, Q15, and Q7 data types.   
42  */
43
44 /**   
45  * @addtogroup Max   
46  * @{   
47  */
48
49
50 /**   
51  * @brief Maximum value of a floating-point vector.   
52  * @param[in]       *pSrc points to the input vector   
53  * @param[in]       blockSize length of the input vector   
54  * @param[out]      *pResult maximum value returned here   
55  * @param[out]      *pIndex index of maximum value returned here   
56  * @return none.   
57  */
58
59 void arm_max_f32(
60   float32_t * pSrc,
61   uint32_t blockSize,
62   float32_t * pResult,
63   uint32_t * pIndex)
64 {
65   float32_t maxVal, out;                         /* Temporary variables to store the output value. */
66   uint32_t blkCnt, outIndex;                     /* loop counter */
67
68   /* Initialise the index value to zero. */
69   outIndex = 0u;
70   /* Load first input value that act as reference value for comparision */
71   out = *pSrc++;
72
73   /* Loop over blockSize number of values */
74   blkCnt = (blockSize - 1u);
75
76 #ifndef ARM_MATH_CM0
77
78   /* Run the below code for Cortex-M4 and Cortex-M3 */
79
80   do
81   {
82     /* Initialize maxVal to the next consecutive values one by one */
83     maxVal = *pSrc++;
84
85     /* compare for the maximum value */
86     if(out < maxVal)
87     {
88       /* Update the maximum value and it's index */
89       out = maxVal;
90       outIndex = blockSize - blkCnt;
91     }
92     /* Decrement the loop counter */
93     blkCnt--;
94
95   } while(blkCnt > 0u);
96
97 #else
98
99   /* Run the below code for Cortex-M0 */
100   while(blkCnt > 0u)
101   {
102     /* Initialize maxVal to the next consecutive values one by one */
103     maxVal = *pSrc++;
104
105     /* compare for the maximum value */
106     if(out < maxVal)
107     {
108       /* Update the maximum value and it's index */
109       out = maxVal;
110       outIndex = blockSize - blkCnt;
111     }
112     /* Decrement the loop counter */
113     blkCnt--;
114
115   }
116
117 #endif /* #ifndef ARM_MATH_CM0 */
118
119
120   /* Store the maximum value and it's index into destination pointers */
121   *pResult = out;
122   *pIndex = outIndex;
123 }
124
125 /**   
126  * @} end of Max group   
127  */