HomeSort by relevance Sort by last modified time
    Searched full:scaling_coefficient (Results 1 - 3 of 3) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/transform/
FastCosineTransformer.java 103 double scaling_coefficient = FastMath.sqrt(2.0 / (f.length-1)); local
104 return FastFourierTransformer.scaleArray(fct(f), scaling_coefficient);
129 double scaling_coefficient = FastMath.sqrt(2.0 / (n-1)); local
130 return FastFourierTransformer.scaleArray(fct(data), scaling_coefficient);
146 double scaling_coefficient = 2.0 / (f.length - 1); local
147 return FastFourierTransformer.scaleArray(fct(f), scaling_coefficient);
170 double scaling_coefficient = 2.0 / (n - 1); local
171 return FastFourierTransformer.scaleArray(fct(data), scaling_coefficient);
FastSineTransformer.java 103 double scaling_coefficient = FastMath.sqrt(2.0 / f.length); local
104 return FastFourierTransformer.scaleArray(fst(f), scaling_coefficient);
128 double scaling_coefficient = FastMath.sqrt(2.0 / n); local
129 return FastFourierTransformer.scaleArray(fst(data), scaling_coefficient);
144 double scaling_coefficient = 2.0 / f.length; local
145 return FastFourierTransformer.scaleArray(fst(f), scaling_coefficient);
167 double scaling_coefficient = 2.0 / n; local
168 return FastFourierTransformer.scaleArray(fst(data), scaling_coefficient);
FastFourierTransformer.java 129 double scaling_coefficient = 1.0 / FastMath.sqrt(f.length); local
130 return scaleArray(fft(f, false), scaling_coefficient);
153 double scaling_coefficient = 1.0 / FastMath.sqrt(n); local
154 return scaleArray(fft(data, false), scaling_coefficient);
171 double scaling_coefficient = 1.0 / FastMath.sqrt(f.length); local
172 return scaleArray(fft(f), scaling_coefficient);
188 double scaling_coefficient = 1.0 / f.length; local
189 return scaleArray(fft(f, true), scaling_coefficient);
212 double scaling_coefficient = 1.0 / n; local
213 return scaleArray(fft(data, true), scaling_coefficient);
230 double scaling_coefficient = 1.0 \/ f.length; local
247 double scaling_coefficient = 1.0 \/ FastMath.sqrt(f.length); local
271 double scaling_coefficient = 1.0 \/ FastMath.sqrt(n); local
289 double scaling_coefficient = 1.0 \/ FastMath.sqrt(f.length); local
    [all...]

Completed in 93 milliseconds