HomeSort by relevance Sort by last modified time
    Searched full:coefficients (Results 1 - 25 of 1623) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libeffects/lvm/lib/Bass/src/
LVDBE_Tables.c 26 #include "LVDBE_Coeffs.h" /* Filter coefficients */
32 /* Coefficients constant table */
40 /* Coefficients for 55Hz centre frequency */
41 {HPF_Fs8000_Fc55_A2, /* 8kS/s coefficients */
46 {HPF_Fs11025_Fc55_A2, /* 11kS/s coefficients */
51 {HPF_Fs12000_Fc55_A2, /* 12kS/s coefficients */
56 {HPF_Fs16000_Fc55_A2, /* 16kS/s coefficients */
61 {HPF_Fs22050_Fc55_A2, /* 22kS/s coefficients */
66 {HPF_Fs24000_Fc55_A2, /* 24kS/s coefficients */
71 {HPF_Fs32000_Fc55_A2, /* 32kS/s coefficients */
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_Tables.c 28 #include "LVCS_Headphone_Coeffs.h" /* Headphone coefficients */
39 {CS_MIDDLE_8000_A0, /* 8kS/s coefficients */
43 {CS_MIDDLE_11025_A0, /* 11kS/s coefficients */
47 {CS_MIDDLE_12000_A0, /* 12kS/s coefficients */
51 {CS_MIDDLE_16000_A0, /* 16kS/s coefficients */
55 {CS_MIDDLE_22050_A0, /* 22kS/s coefficients */
59 {CS_MIDDLE_24000_A0, /* 24kS/s coefficients */
63 {CS_MIDDLE_32000_A0, /* 32kS/s coefficients */
67 {CS_MIDDLE_44100_A0, /* 44kS/s coefficients */
71 {CS_MIDDLE_48000_A0, /* 48kS/s coefficients */
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunction.java 29 * Immutable representation of a real polynomial function with real coefficients.
44 * The coefficients of the polynomial, ordered by degree -- i.e.,
45 * coefficients[0] is the constant term and coefficients[n] is the
48 private final double coefficients[]; field in class:PolynomialFunction
51 * Construct a polynomial with the given coefficients. The first element
52 * of the coefficients array is the constant term. Higher degree
53 * coefficients follow in sequence. The degree of the resulting polynomial
58 * the coefficients property.</p>
60 * @param c polynomial coefficients
    [all...]
PolynomialsUtils.java 32 /** Coefficients for Chebyshev polynomials. */
35 /** Coefficients for Hermite polynomials. */
38 /** Coefficients for Laguerre polynomials. */
41 /** Coefficients for Legendre polynomials. */
187 /** Get the coefficients array for a given degree.
189 * @param coefficients list where the computed coefficients are stored
190 * @param generator recurrence coefficients generator
191 * @return coefficients array
194 final ArrayList<BigFraction> coefficients,
    [all...]
PolynomialFunctionNewtonForm.java 40 * The coefficients of the polynomial, ordered by degree -- i.e.
41 * coefficients[0] is the constant term and coefficients[n] is the
44 private double coefficients[]; field in class:PolynomialFunctionNewtonForm
52 * When all c[i] = 0, a[] becomes normal polynomial coefficients,
53 * i.e. a[i] = coefficients[i].
58 * Whether the polynomial coefficients are available.
69 * @param a the coefficients in Newton form formula
106 * Returns a copy of coefficients in Newton form formula.
110 * @return a fresh copy of coefficients in Newton form formul
    [all...]
  /external/webrtc/webrtc/common_audio/signal_processing/
filter_ar_fast_q12_armv7.S 26 @ r2: &coefficients[0]
34 @ r10: coefficients[j]
36 @ r12: &coefficients[j]
51 sub r12, #4 @ &coefficients[coefficients_length - 2]
63 ldr r10, [r12], #-4 @ coefficients[j - 1], coefficients[j]
65 smlatt r8, r10, r5, r8 @ sum2 += coefficients[j] * data_out[i - j + 1];
66 smlatb r7, r10, r5, r7 @ sum1 += coefficients[j] * data_out[i - j];
67 smlabt r7, r10, r5, r7 @ coefficients[j - 1] * data_out[i - j + 1];
69 smlabb r8, r10, r5, r8 @ coefficients[j - 1] * data_out[i - j + 2]
    [all...]
  /external/eigen/doc/snippets/
MatrixBase_diagonal.cpp 3 cout << "Here are the coefficients on the main diagonal of m:" << endl
MatrixBase_prod.cpp 3 cout << "Here is the product of all the coefficients:" << endl << m.prod() << endl;
MatrixBase_cwiseEqual.cpp 7 cout << "Number of coefficients that are equal: " << count << endl;
MatrixBase_cwiseNotEqual.cpp 7 cout << "Number of coefficients that are not equal: " << count << endl;
MatrixBase_diagonal_int.cpp 3 cout << "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:" << endl
MatrixBase_diagonal_template_int.cpp 3 cout << "Here are the coefficients on the 1st super-diagonal and 2nd sub-diagonal of m:" << endl
Tridiagonalization_householderCoefficients.cpp 6 cout << "The vector of Householder coefficients is:" << endl << hc << endl;
  /external/fec/
dotprod.h 4 int len; /* Number of coefficients */
6 /* On a MMX or SSE machine, these hold 4 copies of the coefficients,
  /external/eigen/doc/special_examples/
Tutorial_sparse_example.cpp 7 void buildProblem(std::vector<T>& coefficients, Eigen::VectorXd& b, int n);
16 std::vector<T> coefficients; // list of non-zeros coefficients local
18 buildProblem(coefficients, b, n);
21 A.setFromTriplets(coefficients.begin(), coefficients.end());
Tutorial_sparse_example_details.cpp 19 void buildProblem(std::vector<T>& coefficients, Eigen::VectorXd& b, int n)
28 insertCoefficient(id, i-1,j, -1, coefficients, b, boundary);
29 insertCoefficient(id, i+1,j, -1, coefficients, b, boundary);
30 insertCoefficient(id, i,j-1, -1, coefficients, b, boundary);
31 insertCoefficient(id, i,j+1, -1, coefficients, b, boundary);
32 insertCoefficient(id, i,j, 4, coefficients, b, boundary);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Filters.h 34 * Biquad with coefficients A0, A1, A2, B1 and B2 coefficients
36 /* Single precision (16-bit) Biquad section coefficients */
49 * Biquad with coefficients A0, A1 and B1 coefficients
51 /* Single precision (16-bit) Biquad section coefficients */
  /external/skia/src/gpu/effects/
GrBicubicEffect.h 26 const float* coefficients() const { return fCoefficients; } function in class:GrBicubicEffect
33 * Create a simple filter effect with custom bicubic coefficients and optional domain.
35 static const GrFragmentProcessor* Create(GrTexture* tex, const SkScalar coefficients[16],
40 return Create(tex, coefficients, GrCoordTransform::MakeDivByTextureWHMatrix(tex),
43 return new GrBicubicEffect(tex, coefficients,
57 * Create a filter effect with custom bicubic coefficients, the texture matrix, and the x/y
60 static const GrFragmentProcessor* Create(GrTexture* tex, const SkScalar coefficients[16],
63 return new GrBicubicEffect(tex, coefficients, matrix, tileModes);
85 GrBicubicEffect(GrTexture*, const SkScalar coefficients[16], const SkMatrix &matrix,
87 GrBicubicEffect(GrTexture*, const SkScalar coefficients[16], const SkMatrix &matrix
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
LinearObjectiveFunction.java 36 * The c<sub>i</sub> and d are the coefficients of the equation,
47 /** Coefficients of the constraint (c<sub>i</sub>). */
48 private final transient RealVector coefficients; field in class:LinearObjectiveFunction
54 * @param coefficients The coefficients for the linear equation being optimized
57 public LinearObjectiveFunction(double[] coefficients, double constantTerm) {
58 this(new ArrayRealVector(coefficients), constantTerm);
62 * @param coefficients The coefficients for the linear equation being optimized
65 public LinearObjectiveFunction(RealVector coefficients, double constantTerm)
    [all...]
  /external/webrtc/webrtc/common_audio/
fir_filter.cc 25 FIRFilterC(const float* coefficients,
37 FIRFilter* FIRFilter::Create(const float* coefficients,
40 if (!coefficients || coefficients_length <= 0 || max_input_length <= 0) {
50 new FIRFilterSSE2(coefficients, coefficients_length, max_input_length);
55 new FIRFilterSSE2(coefficients, coefficients_length, max_input_length);
57 filter = new FIRFilterC(coefficients, coefficients_length);
62 new FIRFilterNEON(coefficients, coefficients_length, max_input_length);
66 new FIRFilterNEON(coefficients, coefficients_length, max_input_length);
68 filter = new FIRFilterC(coefficients, coefficients_length);
71 filter = new FIRFilterC(coefficients, coefficients_length)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
poly_to_lsp.h 25 * conversion from lpc coefficients to lsp coefficients
30 int16_t *a, /* (o) A coefficients in Q12 */
31 int16_t *lsp, /* (i) LSP coefficients in Q15 */
32 int16_t *old_lsp /* (i) old LSP coefficients that are used if the new
33 coefficients turn out to be unstable */
poly_to_lsf.h 25 * conversion from lpc coefficients to lsf coefficients
29 int16_t *lsf, /* (o) lsf coefficients (Q13) */
30 int16_t *a /* (i) A coefficients (Q12) */
lsf_interpolate_to_poly_dec.c 24 * interpolation of lsf coefficients for the decoder
28 int16_t *a, /* (o) lpc coefficients Q12 */
29 int16_t *lsf1, /* (i) first set of lsf coefficients Q13 */
30 int16_t *lsf2, /* (i) second set of lsf coefficients Q13 */
40 /* Compute the filter coefficients from the LSF */
lsf_interpolate_to_poly_enc.c 24 * lsf interpolator and conversion from lsf to a coefficients
29 int16_t *a, /* (o) lpc coefficients Q12 */
30 int16_t *lsf1, /* (i) first set of lsf coefficients Q13 */
31 int16_t *lsf2, /* (i) second set of lsf coefficients Q13 */
42 /* Compute the filter coefficients from the LSF */
  /external/ceres-solver/data/
README.foe 1 The *.foe files contain coefficients provided by Stefan Roth, who agreed to
6 The coefficients in the *.foe files have been obtained by extracting the

Completed in 1107 milliseconds

1 2 3 4 5 6 7 8 91011>>