From 96d6da4e252b06dcfdc041e7df23e86161c33007 Mon Sep 17 00:00:00 2001 From: rihab kouki Date: Tue, 28 Jul 2020 11:24:49 +0100 Subject: Official ARM version: v5.6.0 --- ...arm_signal_converge_example_f32_8c-example.html | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'docs/DSP/html/arm_signal_converge_example_f32_8c-example.html') diff --git a/docs/DSP/html/arm_signal_converge_example_f32_8c-example.html b/docs/DSP/html/arm_signal_converge_example_f32_8c-example.html index bdc4b9a..09f2f1a 100644 --- a/docs/DSP/html/arm_signal_converge_example_f32_8c-example.html +++ b/docs/DSP/html/arm_signal_converge_example_f32_8c-example.html @@ -32,7 +32,7 @@ Logo
CMSIS-DSP -  Version 1.5.2 +  Version 1.7.0
CMSIS DSP Software Library
@@ -233,7 +233,7 @@ $(document).ready(function(){initNavTree('arm_signal_converge_example_f32_8c-exa
arm_lms_norm_init_f32(&lmsNorm_instance, NUMTAPS, lmsNormCoeff_f32, lmsStateF32, MU, BLOCKSIZE);
/* Initialize the FIR data structure */
-
arm_fir_init_f32(&LPF_instance, NUMTAPS, (float32_t *)FIRCoeff_f32, firStateF32, BLOCKSIZE);
+
arm_fir_init_f32(&LPF_instance, NUMTAPS, (float32_t *)FIRCoeff_f32, firStateF32, BLOCKSIZE);
/* ----------------------------------------------------------------------
* Loop over the frames of data and execute each of the processing
@@ -243,14 +243,14 @@ $(document).ready(function(){initNavTree('arm_signal_converge_example_f32_8c-exa
for(i=0; i < NUMFRAMES; i++)
{
/* Read the input data - uniformly distributed random noise - into wire1 */
-
arm_copy_f32(testInput_f32 + (i * BLOCKSIZE), wire1, BLOCKSIZE);
+
arm_copy_f32(testInput_f32 + (i * BLOCKSIZE), wire1, BLOCKSIZE);
/* Execute the FIR processing function. Input wire1 and output wire2 */
-
arm_fir_f32(&LPF_instance, wire1, wire2, BLOCKSIZE);
+
arm_fir_f32(&LPF_instance, wire1, wire2, BLOCKSIZE);
/* Execute the LMS Norm processing function*/
-
arm_lms_norm_f32(&lmsNorm_instance, /* LMSNorm instance */
+
arm_lms_norm_f32(&lmsNorm_instance, /* LMSNorm instance */
wire1, /* Input signal */
wire2, /* Reference Signal */
wire3, /* Converged Signal */
@@ -258,7 +258,7 @@ $(document).ready(function(){initNavTree('arm_signal_converge_example_f32_8c-exa
BLOCKSIZE); /* BlockSize */
/* apply overall gain */
-
arm_scale_f32(wire3, 5, wire3, BLOCKSIZE); /* in-place buffer */
+
arm_scale_f32(wire3, 5, wire3, BLOCKSIZE); /* in-place buffer */
}
status = ARM_MATH_SUCCESS;
@@ -267,8 +267,8 @@ $(document).ready(function(){initNavTree('arm_signal_converge_example_f32_8c-exa
* Test whether the error signal has reached towards 0.
* ----------------------------------------------------------------------------- */
-
arm_abs_f32(err_signal, err_signal, BLOCKSIZE);
-
arm_min_f32(err_signal, BLOCKSIZE, &minValue, &index);
+
arm_abs_f32(err_signal, err_signal, BLOCKSIZE);
+
arm_min_f32(err_signal, BLOCKSIZE, &minValue, &index);
if (minValue > DELTA_ERROR)
{
@@ -279,10 +279,10 @@ $(document).ready(function(){initNavTree('arm_signal_converge_example_f32_8c-exa
* Test whether the filter coefficients have converged.
* ------------------------------------------------------------------- */
-
arm_sub_f32((float32_t *)FIRCoeff_f32, lmsNormCoeff_f32, lmsNormCoeff_f32, NUMTAPS);
+
arm_sub_f32((float32_t *)FIRCoeff_f32, lmsNormCoeff_f32, lmsNormCoeff_f32, NUMTAPS);
-
arm_abs_f32(lmsNormCoeff_f32, lmsNormCoeff_f32, NUMTAPS);
-
arm_min_f32(lmsNormCoeff_f32, NUMTAPS, &minValue, &index);
+
arm_abs_f32(lmsNormCoeff_f32, lmsNormCoeff_f32, NUMTAPS);
+
arm_min_f32(lmsNormCoeff_f32, NUMTAPS, &minValue, &index);
if (minValue > DELTA_COEFF)
{
@@ -307,7 +307,7 @@ $(document).ready(function(){initNavTree('arm_signal_converge_example_f32_8c-exa