math_helper.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. /* ----------------------------------------------------------------------
  2. * Copyright (C) 2010-2012 ARM Limited. All rights reserved.
  3. *
  4. * $Date: 17. January 2013
  5. * $Revision: V1.4.0 b
  6. *
  7. * Project: CMSIS DSP Library
  8. *
  9. * Title: math_helper.c
  10. *
  11. * Description: Definition of all helper functions required.
  12. *
  13. * Target Processor: Cortex-M4/Cortex-M3
  14. *
  15. * Redistribution and use in source and binary forms, with or without
  16. * modification, are permitted provided that the following conditions
  17. * are met:
  18. * - Redistributions of source code must retain the above copyright
  19. * notice, this list of conditions and the following disclaimer.
  20. * - Redistributions in binary form must reproduce the above copyright
  21. * notice, this list of conditions and the following disclaimer in
  22. * the documentation and/or other materials provided with the
  23. * distribution.
  24. * - Neither the name of ARM LIMITED nor the names of its contributors
  25. * may be used to endorse or promote products derived from this
  26. * software without specific prior written permission.
  27. *
  28. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  29. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  30. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  31. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  32. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  33. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  34. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  35. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  36. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  37. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  38. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  39. * POSSIBILITY OF SUCH DAMAGE.
  40. * -------------------------------------------------------------------- */
  41. /* ----------------------------------------------------------------------
  42. * Include standard header files
  43. * -------------------------------------------------------------------- */
  44. #include<math.h>
  45. /* ----------------------------------------------------------------------
  46. * Include project header files
  47. * -------------------------------------------------------------------- */
  48. #include "math_helper.h"
  49. /**
  50. * @brief Caluclation of SNR
  51. * @param[in] pRef Pointer to the reference buffer
  52. * @param[in] pTest Pointer to the test buffer
  53. * @param[in] buffSize total number of samples
  54. * @return SNR
  55. * The function Caluclates signal to noise ratio for the reference output
  56. * and test output
  57. */
  58. float arm_snr_f32(float *pRef, float *pTest, uint32_t buffSize)
  59. {
  60. float EnergySignal = 0.0, EnergyError = 0.0;
  61. uint32_t i;
  62. float SNR;
  63. int temp;
  64. int *test;
  65. for (i = 0; i < buffSize; i++)
  66. {
  67. /* Checking for a NAN value in pRef array */
  68. test = (int *)(&pRef[i]);
  69. temp = *test;
  70. if (temp == 0x7FC00000)
  71. {
  72. return(0);
  73. }
  74. /* Checking for a NAN value in pTest array */
  75. test = (int *)(&pTest[i]);
  76. temp = *test;
  77. if (temp == 0x7FC00000)
  78. {
  79. return(0);
  80. }
  81. EnergySignal += pRef[i] * pRef[i];
  82. EnergyError += (pRef[i] - pTest[i]) * (pRef[i] - pTest[i]);
  83. }
  84. /* Checking for a NAN value in EnergyError */
  85. test = (int *)(&EnergyError);
  86. temp = *test;
  87. if (temp == 0x7FC00000)
  88. {
  89. return(0);
  90. }
  91. SNR = 10 * log10 (EnergySignal / EnergyError);
  92. return (SNR);
  93. }
  94. /**
  95. * @brief Provide guard bits for Input buffer
  96. * @param[in,out] input_buf Pointer to input buffer
  97. * @param[in] blockSize block Size
  98. * @param[in] guard_bits guard bits
  99. * @return none
  100. * The function Provides the guard bits for the buffer
  101. * to avoid overflow
  102. */
  103. void arm_provide_guard_bits_q15 (q15_t * input_buf, uint32_t blockSize,
  104. uint32_t guard_bits)
  105. {
  106. uint32_t i;
  107. for (i = 0; i < blockSize; i++)
  108. {
  109. input_buf[i] = input_buf[i] >> guard_bits;
  110. }
  111. }
  112. /**
  113. * @brief Converts float to fixed in q12.20 format
  114. * @param[in] pIn pointer to input buffer
  115. * @param[out] pOut pointer to outputbuffer
  116. * @param[in] numSamples number of samples in the input buffer
  117. * @return none
  118. * The function converts floating point values to fixed point(q12.20) values
  119. */
  120. void arm_float_to_q12_20(float *pIn, q31_t * pOut, uint32_t numSamples)
  121. {
  122. uint32_t i;
  123. for (i = 0; i < numSamples; i++)
  124. {
  125. /* 1048576.0f corresponds to pow(2, 20) */
  126. pOut[i] = (q31_t) (pIn[i] * 1048576.0f);
  127. pOut[i] += pIn[i] > 0 ? 0.5 : -0.5;
  128. if (pIn[i] == (float) 1.0)
  129. {
  130. pOut[i] = 0x000FFFFF;
  131. }
  132. }
  133. }
  134. /**
  135. * @brief Compare MATLAB Reference Output and ARM Test output
  136. * @param[in] pIn Pointer to Ref buffer
  137. * @param[in] pOut Pointer to Test buffer
  138. * @param[in] numSamples number of samples in the buffer
  139. * @return maximum difference
  140. */
  141. uint32_t arm_compare_fixed_q15(q15_t *pIn, q15_t *pOut, uint32_t numSamples)
  142. {
  143. uint32_t i;
  144. int32_t diff, diffCrnt = 0;
  145. uint32_t maxDiff = 0;
  146. for (i = 0; i < numSamples; i++)
  147. {
  148. diff = pIn[i] - pOut[i];
  149. diffCrnt = (diff > 0) ? diff : -diff;
  150. if (diffCrnt > maxDiff)
  151. {
  152. maxDiff = diffCrnt;
  153. }
  154. }
  155. return(maxDiff);
  156. }
  157. /**
  158. * @brief Compare MATLAB Reference Output and ARM Test output
  159. * @param[in] pIn Pointer to Ref buffer
  160. * @param[in] pOut Pointer to Test buffer
  161. * @param[in] numSamples number of samples in the buffer
  162. * @return maximum difference
  163. */
  164. uint32_t arm_compare_fixed_q31(q31_t *pIn, q31_t * pOut, uint32_t numSamples)
  165. {
  166. uint32_t i;
  167. int32_t diff, diffCrnt = 0;
  168. uint32_t maxDiff = 0;
  169. for (i = 0; i < numSamples; i++)
  170. {
  171. diff = pIn[i] - pOut[i];
  172. diffCrnt = (diff > 0) ? diff : -diff;
  173. if (diffCrnt > maxDiff)
  174. {
  175. maxDiff = diffCrnt;
  176. }
  177. }
  178. return(maxDiff);
  179. }
  180. /**
  181. * @brief Provide guard bits for Input buffer
  182. * @param[in,out] input_buf Pointer to input buffer
  183. * @param[in] blockSize block Size
  184. * @param[in] guard_bits guard bits
  185. * @return none
  186. * The function Provides the guard bits for the buffer
  187. * to avoid overflow
  188. */
  189. void arm_provide_guard_bits_q31 (q31_t * input_buf,
  190. uint32_t blockSize,
  191. uint32_t guard_bits)
  192. {
  193. uint32_t i;
  194. for (i = 0; i < blockSize; i++)
  195. {
  196. input_buf[i] = input_buf[i] >> guard_bits;
  197. }
  198. }
  199. /**
  200. * @brief Provide guard bits for Input buffer
  201. * @param[in,out] input_buf Pointer to input buffer
  202. * @param[in] blockSize block Size
  203. * @param[in] guard_bits guard bits
  204. * @return none
  205. * The function Provides the guard bits for the buffer
  206. * to avoid overflow
  207. */
  208. void arm_provide_guard_bits_q7 (q7_t * input_buf,
  209. uint32_t blockSize,
  210. uint32_t guard_bits)
  211. {
  212. uint32_t i;
  213. for (i = 0; i < blockSize; i++)
  214. {
  215. input_buf[i] = input_buf[i] >> guard_bits;
  216. }
  217. }
  218. /**
  219. * @brief Caluclates number of guard bits
  220. * @param[in] num_adds number of additions
  221. * @return guard bits
  222. * The function Caluclates the number of guard bits
  223. * depending on the numtaps
  224. */
  225. uint32_t arm_calc_guard_bits (uint32_t num_adds)
  226. {
  227. uint32_t i = 1, j = 0;
  228. if (num_adds == 1)
  229. {
  230. return (0);
  231. }
  232. while (i < num_adds)
  233. {
  234. i = i * 2;
  235. j++;
  236. }
  237. return (j);
  238. }
  239. /**
  240. * @brief Apply guard bits to buffer
  241. * @param[in,out] pIn pointer to input buffer
  242. * @param[in] numSamples number of samples in the input buffer
  243. * @param[in] guard_bits guard bits
  244. * @return none
  245. */
  246. void arm_apply_guard_bits (float32_t *pIn,
  247. uint32_t numSamples,
  248. uint32_t guard_bits)
  249. {
  250. uint32_t i;
  251. for (i = 0; i < numSamples; i++)
  252. {
  253. pIn[i] = pIn[i] * arm_calc_2pow(guard_bits);
  254. }
  255. }
  256. /**
  257. * @brief Calculates pow(2, numShifts)
  258. * @param[in] numShifts number of shifts
  259. * @return pow(2, numShifts)
  260. */
  261. uint32_t arm_calc_2pow(uint32_t numShifts)
  262. {
  263. uint32_t i, val = 1;
  264. for (i = 0; i < numShifts; i++)
  265. {
  266. val = val * 2;
  267. }
  268. return(val);
  269. }
  270. /**
  271. * @brief Converts float to fixed q14
  272. * @param[in] pIn pointer to input buffer
  273. * @param[out] pOut pointer to output buffer
  274. * @param[in] numSamples number of samples in the buffer
  275. * @return none
  276. * The function converts floating point values to fixed point values
  277. */
  278. void arm_float_to_q14 (float *pIn, q15_t *pOut, uint32_t numSamples)
  279. {
  280. uint32_t i;
  281. for (i = 0; i < numSamples; i++)
  282. {
  283. /* 16384.0f corresponds to pow(2, 14) */
  284. pOut[i] = (q15_t) (pIn[i] * 16384.0f);
  285. pOut[i] += pIn[i] > 0 ? 0.5 : -0.5;
  286. if (pIn[i] == (float) 2.0)
  287. {
  288. pOut[i] = 0x7FFF;
  289. }
  290. }
  291. }
  292. /**
  293. * @brief Converts float to fixed q30 format
  294. * @param[in] pIn pointer to input buffer
  295. * @param[out] pOut pointer to output buffer
  296. * @param[in] numSamples number of samples in the buffer
  297. * @return none
  298. * The function converts floating point values to fixed point values
  299. */
  300. void arm_float_to_q30 (float *pIn, q31_t * pOut, uint32_t numSamples)
  301. {
  302. uint32_t i;
  303. for (i = 0; i < numSamples; i++)
  304. {
  305. /* 1073741824.0f corresponds to pow(2, 30) */
  306. pOut[i] = (q31_t) (pIn[i] * 1073741824.0f);
  307. pOut[i] += pIn[i] > 0 ? 0.5 : -0.5;
  308. if (pIn[i] == (float) 2.0)
  309. {
  310. pOut[i] = 0x7FFFFFFF;
  311. }
  312. }
  313. }
  314. /**
  315. * @brief Converts float to fixed q30 format
  316. * @param[in] pIn pointer to input buffer
  317. * @param[out] pOut pointer to output buffer
  318. * @param[in] numSamples number of samples in the buffer
  319. * @return none
  320. * The function converts floating point values to fixed point values
  321. */
  322. void arm_float_to_q29 (float *pIn, q31_t *pOut, uint32_t numSamples)
  323. {
  324. uint32_t i;
  325. for (i = 0; i < numSamples; i++)
  326. {
  327. /* 1073741824.0f corresponds to pow(2, 30) */
  328. pOut[i] = (q31_t) (pIn[i] * 536870912.0f);
  329. pOut[i] += pIn[i] > 0 ? 0.5 : -0.5;
  330. if (pIn[i] == (float) 4.0)
  331. {
  332. pOut[i] = 0x7FFFFFFF;
  333. }
  334. }
  335. }
  336. /**
  337. * @brief Converts float to fixed q28 format
  338. * @param[in] pIn pointer to input buffer
  339. * @param[out] pOut pointer to output buffer
  340. * @param[in] numSamples number of samples in the buffer
  341. * @return none
  342. * The function converts floating point values to fixed point values
  343. */
  344. void arm_float_to_q28 (float *pIn, q31_t *pOut, uint32_t numSamples)
  345. {
  346. uint32_t i;
  347. for (i = 0; i < numSamples; i++)
  348. {
  349. /* 268435456.0f corresponds to pow(2, 28) */
  350. pOut[i] = (q31_t) (pIn[i] * 268435456.0f);
  351. pOut[i] += pIn[i] > 0 ? 0.5 : -0.5;
  352. if (pIn[i] == (float) 8.0)
  353. {
  354. pOut[i] = 0x7FFFFFFF;
  355. }
  356. }
  357. }
  358. /**
  359. * @brief Clip the float values to +/- 1
  360. * @param[in,out] pIn input buffer
  361. * @param[in] numSamples number of samples in the buffer
  362. * @return none
  363. * The function converts floating point values to fixed point values
  364. */
  365. void arm_clip_f32 (float *pIn, uint32_t numSamples)
  366. {
  367. uint32_t i;
  368. for (i = 0; i < numSamples; i++)
  369. {
  370. if (pIn[i] > 1.0f)
  371. {
  372. pIn[i] = 1.0;
  373. }
  374. else if ( pIn[i] < -1.0f)
  375. {
  376. pIn[i] = -1.0;
  377. }
  378. }
  379. }