08-22-2013 01:57 AM
In the sample at National Instruments\MStudioVS2010\DotNET\Examples\Analysis\Enterprise\Filtering
we see code at line 1103
subsetOfMagnitudes[i] = magnitudes[i]*scalingFactor*Math.Sqrt(2.0); // Storing only half the magnitudes array.
my problem is why *scalingFactor*Math.Sqrt(2.0)?
using matlab usually dont do this right?
08-23-2013 03:10 AM
i guess only store 1/2 of all magintude of array.
that's why just multiply sqrt ( 2 )
if store all magnitude of array , then need to multiply ( sqrt (2) )/2
Thanks