Home
last modified time | relevance | path

Searched refs:polynomial (Results 1 – 15 of 15) sorted by relevance

/external/ceres-solver/internal/ceres/
Dpolynomial_solver.cc98 void BuildCompanionMatrix(const Vector& polynomial, in BuildCompanionMatrix() argument
103 const int degree = polynomial.size() - 1; in BuildCompanionMatrix()
108 companion_matrix.col(degree - 1) = -polynomial.reverse().head(degree); in BuildCompanionMatrix()
129 Vector polynomial = RemoveLeadingZeros(polynomial_in); in FindPolynomialRoots() local
130 const int degree = polynomial.size() - 1; in FindPolynomialRoots()
140 const double leading_term = polynomial(0); in FindPolynomialRoots()
141 polynomial /= leading_term; in FindPolynomialRoots()
147 (*real)(0) = -polynomial(1); in FindPolynomialRoots()
158 BuildCompanionMatrix(polynomial, &companion_matrix); in FindPolynomialRoots()
Dpolynomial_solver.h49 bool FindPolynomialRoots(const Vector& polynomial,
54 inline double EvaluatePolynomial(const Vector& polynomial, double x) { in EvaluatePolynomial() argument
56 for (int i = 0; i < polynomial.size(); ++i) { in EvaluatePolynomial()
57 v = v * x + polynomial(i); in EvaluatePolynomial()
Ddogleg_strategy.cc421 Vector polynomial(5); in MakePolynomialForBoundaryConstrainedProblem() local
422 polynomial(0) = r2; in MakePolynomialForBoundaryConstrainedProblem()
423 polynomial(1) = 2.0 * r2 * trB; in MakePolynomialForBoundaryConstrainedProblem()
424 polynomial(2) = r2 * ( trB * trB + 2.0 * detB ) - subspace_g_.squaredNorm(); in MakePolynomialForBoundaryConstrainedProblem()
425 polynomial(3) = -2.0 * ( subspace_g_.transpose() * B_adj * subspace_g_ in MakePolynomialForBoundaryConstrainedProblem()
427 polynomial(4) = r2 * detB * detB - (B_adj * subspace_g_).squaredNorm(); in MakePolynomialForBoundaryConstrainedProblem()
429 return polynomial; in MakePolynomialForBoundaryConstrainedProblem()
473 const Vector polynomial = MakePolynomialForBoundaryConstrainedProblem(); in FindMinimumOnTrustRegionBoundary() local
477 if (!FindPolynomialRoots(polynomial, &roots_real, NULL)) { in FindMinimumOnTrustRegionBoundary()
/external/eigen/unsupported/doc/examples/
DPolynomialUtils1.cpp11 Eigen::Matrix<double,5,1> polynomial; in main() local
12 roots_to_monicPolynomial( roots, polynomial ); in main()
14 for( int i=0; i<4; ++i ){ cout << polynomial[i] << ".x^" << i << "+ "; } in main()
15 cout << polynomial[4] << ".x^4" << endl; in main()
18 evaluation[i] = poly_eval( polynomial, roots[i] ); } in main()
DPolynomialSolver1.cpp14 Eigen::Matrix<double,6,1> polynomial; in main() local
15 roots_to_monicPolynomial( roots, polynomial ); in main()
17 PolynomialSolver<double,5> psolve( polynomial ); in main()
/external/eigen/unsupported/Eigen/
DPolynomials24 * \brief This module provides a QR based polynomial solver.
39 and a QR based polynomial solver.
43 polynomials, computing estimates about polynomials and next the QR based polynomial
63 evaluates a polynomial at a given point using stabilized H&ouml;rner method.
65 …The following code: first computes the coefficients in the monomial basis of the monic polynomial
66 then, it evaluates the computed polynomial, using a stabilized H&ouml;rner method.
76 …um bound (the Cauchy one: \f$C(p)\f$) for the absolute value of a root of the given polynomial i.e.
86 …(the Cauchy one: \f$c(p)\f$) for the absolute value of a non zero root of the given polynomial i.e.
93 \section QR polynomial solver class
94 …Computes the complex roots of a polynomial by computing the eigenvalues of the associated companio…
[all …]
/external/llvm/test/Transforms/LoopStrengthReduce/
Dquadradic-exit-value.ll3 ; The value of %r is dependent on a polynomial iteration expression.
/external/llvm/test/Analysis/ScalarEvolution/
Dtrip-count10.ll78 ; Trip counts for non-polynomial iterations. It's theoretically possible
/external/openssl/crypto/modes/asm/
Dghash-armv4.S318 vmov.i32 d5,#0xe1 @ our irreducible polynomial
341 vmov.i32 d5,#0xe1 @ our irreducible polynomial
/external/clang/include/clang/Basic/
Darm_neon.td122 // P: polynomial
/external/dropbear/libtommath/
Dbn.tex1066 ``polynomial basis''. This simply means a field element is stored by divisions of a radix. For ex…
1068 the polynomial basis representation of $z$ if $f(\beta) = z$ for a given radix $\beta$.
1070 To multiply by the polynomial $g(x) = x$ all you have todo is shift the digits of the basis left on…
/external/libogg/doc/
Drfc3533.txt583 The generator polynomial is 0x04c11db7.
/external/llvm/lib/Target/Hexagon/
DHexagonInstrInfoV4.td2488 // Vector polynomial multiply halfwords
/external/llvm/lib/Target/ARM/
DARMInstrNEON.td3976 // VMUL : Vector Multiply (integer, polynomial and floating-point)
4055 // VMULL : Vector Multiply Long (integer and polynomial) (Q = D * D)
/external/dropbear/libtomcrypt/
Dchanges1435 -- Library now has polynomial-basis GF(2^w) routines I wrote myself. Can be used to perform