HomeSort by relevance Sort by last modified time
    Searched refs:xMc (Results 1 - 6 of 6) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/fitting/
ParametricGaussianFunction.java 89 final double xMc = x - c;
90 return a + b * Math.exp(-xMc * xMc / (2.0 * (d * d)));
131 final double xMc = x - c;
133 final double exp = Math.exp(-xMc * xMc / (2 * d2));
134 final double f = b * exp * xMc / d2;
136 return new double[] { 1.0, exp, f, f * xMc / d };
GaussianDerivativeFunction.java 100 final double xMc = x - c;
101 return (-b / d2) * xMc * Math.exp(-(xMc * xMc) / (2.0 * d2));
GaussianFunction.java 120 final double xMc = x - c;
121 return a + b * Math.exp(-xMc * xMc / (2.0 * (d * d)));
  /external/libgsm/src/
code.c 27 void Gsm_Coder P8((S,s,LARc,Nc,bc,Mc,xmaxc,xMc),
55 word * xMc /* [13*4] normalized RPE samples OUT */
68 for (k = 0; k <= 3; k++, xMc += 13) {
80 xmaxc++, Mc++, xMc );
rpe.c 256 static void APCM_quantization P5((xM,xMc,mant_out,exp_out,xmaxc_out),
259 word * xMc, /* [0..12] OUT */
304 * to get the xMc[0..12]
315 * found in table 4.5) gives the 3 bit coded version xMc[0..12]
320 /* Direct computation of xMc[0..12] using table 4.5
336 xMc[i] = temp + 4; /* see note below */
339 /* NOTE: This equation is used to make all the xMc[i] positive.
349 static void APCM_inverse_quantization P4((xMc,mant,exp,xMp),
350 register word * xMc, /* [0..12] IN */
355 * This part is for decoding the RPE sequence of coded xMc[0..12
    [all...]
  /external/libgsm/inc/
private.h 152 word * xMc /* [13*4] normalized RPE samples OUT */));
178 word * xMc));
221 word * xMc)); /* [0..12] OUT */

Completed in 103 milliseconds