arm_variance_example_f32.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. /* ----------------------------------------------------------------------
  2. * Copyright (C) 2010-2012 ARM Limited. All rights reserved.
  3. *
  4. * $Date: 17. January 2013
  5. * $Revision: V1.4.0
  6. *
  7. * Project: CMSIS DSP Library
  8. * Title: arm_variance_example_f32.c
  9. *
  10. * Description: Example code demonstrating variance calculation of input sequence.
  11. *
  12. * Target Processor: Cortex-M4/Cortex-M3
  13. *
  14. * Redistribution and use in source and binary forms, with or without
  15. * modification, are permitted provided that the following conditions
  16. * are met:
  17. * - Redistributions of source code must retain the above copyright
  18. * notice, this list of conditions and the following disclaimer.
  19. * - Redistributions in binary form must reproduce the above copyright
  20. * notice, this list of conditions and the following disclaimer in
  21. * the documentation and/or other materials provided with the
  22. * distribution.
  23. * - Neither the name of ARM LIMITED nor the names of its contributors
  24. * may be used to endorse or promote products derived from this
  25. * software without specific prior written permission.
  26. *
  27. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  28. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  29. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  30. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  31. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  32. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  33. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  34. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  35. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  36. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  37. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  38. * POSSIBILITY OF SUCH DAMAGE.
  39. * -------------------------------------------------------------------- */
  40. /**
  41. * @addtogroup groupExamples
  42. * @{
  43. *
  44. * @defgroup VarianceExample Variance Example
  45. *
  46. * \par Description:
  47. * \par
  48. * Demonstrates the use of Basic Math and Support Functions to calculate the variance of an
  49. * input sequence with N samples. Uniformly distributed white noise is taken as input.
  50. *
  51. * \par Algorithm:
  52. * \par
  53. * The variance of a sequence is the mean of the squared deviation of the sequence from its mean.
  54. * \par
  55. * This is denoted by the following equation:
  56. * <pre> variance = ((x[0] - x') * (x[0] - x') + (x[1] - x') * (x[1] - x') + ... + * (x[n-1] - x') * (x[n-1] - x')) / (N-1)</pre>
  57. * where, <code>x[n]</code> is the input sequence, <code>N</code> is the number of input samples, and
  58. * <code>x'</code> is the mean value of the input sequence, <code>x[n]</code>.
  59. * \par
  60. * The mean value <code>x'</code> is defined as:
  61. * <pre> x' = (x[0] + x[1] + ... + x[n-1]) / N</pre>
  62. *
  63. * \par Block Diagram:
  64. * \par
  65. * \image html Variance.gif
  66. *
  67. *
  68. * \par Variables Description:
  69. * \par
  70. * \li \c testInput_f32 points to the input data
  71. * \li \c wire1, \c wir2, \c wire3 temporary buffers
  72. * \li \c blockSize number of samples processed at a time
  73. * \li \c refVarianceOut reference variance value
  74. *
  75. * \par CMSIS DSP Software Library Functions Used:
  76. * \par
  77. * - arm_dot_prod_f32()
  78. * - arm_mult_f32()
  79. * - arm_sub_f32()
  80. * - arm_fill_f32()
  81. * - arm_copy_f32()
  82. *
  83. * <b> Refer </b>
  84. * \link arm_variance_example_f32.c \endlink
  85. *
  86. * \example arm_variance_example_f32.c
  87. *
  88. * @} */
  89. #include <math.h>
  90. #include "arm_math.h"
  91. #if defined(SEMIHOSTING)
  92. #include <stdio.h>
  93. #endif
  94. /* ----------------------------------------------------------------------
  95. * Defines each of the tests performed
  96. * ------------------------------------------------------------------- */
  97. #define MAX_BLOCKSIZE 32
  98. #define DELTA (0.000001f)
  99. /* ----------------------------------------------------------------------
  100. * Declare I/O buffers
  101. * ------------------------------------------------------------------- */
  102. float32_t wire1[MAX_BLOCKSIZE];
  103. float32_t wire2[MAX_BLOCKSIZE];
  104. float32_t wire3[MAX_BLOCKSIZE];
  105. /* ----------------------------------------------------------------------
  106. * Test input data for Floating point Variance example for 32-blockSize
  107. * Generated by the MATLAB randn() function
  108. * ------------------------------------------------------------------- */
  109. float32_t testInput_f32[32] =
  110. {
  111. -0.432564811528221, -1.665584378238097, 0.125332306474831, 0.287676420358549,
  112. -1.146471350681464, 1.190915465642999, 1.189164201652103, -0.037633276593318,
  113. 0.327292361408654, 0.174639142820925, -0.186708577681439, 0.725790548293303,
  114. -0.588316543014189, 2.183185818197101, -0.136395883086596, 0.113931313520810,
  115. 1.066768211359189, 0.059281460523605, -0.095648405483669, -0.832349463650022,
  116. 0.294410816392640, -1.336181857937804, 0.714324551818952, 1.623562064446271,
  117. -0.691775701702287, 0.857996672828263, 1.254001421602532, -1.593729576447477,
  118. -1.440964431901020, 0.571147623658178, -0.399885577715363, 0.689997375464345
  119. };
  120. /* ----------------------------------------------------------------------
  121. * Declare Global variables
  122. * ------------------------------------------------------------------- */
  123. uint32_t blockSize = 32;
  124. float32_t refVarianceOut = 0.903941793931839;
  125. /* ----------------------------------------------------------------------
  126. * Variance calculation test
  127. * ------------------------------------------------------------------- */
  128. int32_t main(void)
  129. {
  130. arm_status status;
  131. float32_t mean, oneByBlockSize;
  132. float32_t variance;
  133. float32_t diff;
  134. status = ARM_MATH_SUCCESS;
  135. #if defined(SEMIHOSTING)
  136. printf("START\n");
  137. #endif
  138. /* Calculation of mean value of input */
  139. /* x' = 1/blockSize * (x(0)* 1 + x(1) * 1 + ... + x(n-1) * 1) */
  140. /* Fill wire1 buffer with 1.0 value */
  141. arm_fill_f32(1.0, wire1, blockSize);
  142. /* Calculate the dot product of wire1 and wire2 */
  143. /* (x(0)* 1 + x(1) * 1 + ...+ x(n-1) * 1) */
  144. arm_dot_prod_f32(testInput_f32, wire1, blockSize, &mean);
  145. /* Calculation of 1/blockSize */
  146. oneByBlockSize = 1.0 / (blockSize);
  147. /* 1/blockSize * (x(0)* 1 + x(1) * 1 + ... + x(n-1) * 1) */
  148. arm_mult_f32(&mean, &oneByBlockSize, &mean, 1);
  149. /* Calculation of variance value of input */
  150. /* (1/blockSize) * (x(0) - x') * (x(0) - x') + (x(1) - x') * (x(1) - x') + ... + (x(n-1) - x') * (x(n-1) - x') */
  151. /* Fill wire2 with mean value x' */
  152. arm_fill_f32(mean, wire2, blockSize);
  153. /* wire3 contains (x-x') */
  154. arm_sub_f32(testInput_f32, wire2, wire3, blockSize);
  155. /* wire2 contains (x-x') */
  156. arm_copy_f32(wire3, wire2, blockSize);
  157. /* (x(0) - x') * (x(0) - x') + (x(1) - x') * (x(1) - x') + ... + (x(n-1) - x') * (x(n-1) - x') */
  158. arm_dot_prod_f32(wire2, wire3, blockSize, &variance);
  159. /* Calculation of 1/blockSize */
  160. oneByBlockSize = 1.0 / (blockSize - 1);
  161. /* Calculation of variance */
  162. arm_mult_f32(&variance, &oneByBlockSize, &variance, 1);
  163. /* absolute value of difference between ref and test */
  164. diff = fabsf(refVarianceOut - variance);
  165. /* Comparison of variance value with reference */
  166. status = (diff > DELTA) ? ARM_MATH_TEST_FAILURE : ARM_MATH_SUCCESS;
  167. if (status != ARM_MATH_SUCCESS)
  168. {
  169. #if defined (SEMIHOSTING)
  170. printf("FAILURE\n");
  171. #else
  172. while (1); /* main function does not return */
  173. #endif
  174. }
  175. else
  176. {
  177. #if defined (SEMIHOSTING)
  178. printf("SUCCESS\n");
  179. #else
  180. while (1); /* main function does not return */
  181. #endif
  182. }
  183. }
  184. /** \endlink */