Searched refs:solve (Results 1 - 25 of 201) sorted by relevance

123456789

/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DDecompositionSolver.java23 * Interface handling decomposition algorithms that can solve A × X = B.
25 * matrices from which they can solve A × X = B in least squares sense: they find X
46 double[] solve(final double[] b) method in interface:DecompositionSolver
57 RealVector solve(final RealVector b) method in interface:DecompositionSolver
68 RealMatrix solve(final RealMatrix b) method in interface:DecompositionSolver
H A DFieldDecompositionSolver.java24 * Interface handling decomposition algorithms that can solve A × X = B.
26 * matrices from which they can solve A × X = B in least squares sense: they find X
48 T[] solve(final T[] b) method in interface:FieldDecompositionSolver
59 FieldVector<T> solve(final FieldVector<T> b) method in interface:FieldDecompositionSolver
70 FieldMatrix<T> solve(final FieldMatrix<T> b) method in interface:FieldDecompositionSolver
/external/eigen/doc/snippets/
H A DLeastSquaresQR.cpp4 << A.colPivHouseholderQr().solve(b) << endl;
H A DTutorial_solve_reuse_decomposition.cpp7 x = luOfA.solve(b);
11 x = luOfA.solve(b);
H A DLeastSquaresNormalEquations.cpp4 << (A.transpose() * A).ldlt().solve(A.transpose() * b) << endl;
H A DBiCGSTAB_simple.cpp7 x = solver.solve(b);
11 x = solver.solve(b); // solve agai
H A DTriangular_solve.cpp9 << m.triangularView<Eigen::Upper>().solve(n) << endl;
11 << m.triangularView<Eigen::Upper>().solve<Eigen::OnTheRight>(n);
H A DColPivHouseholderQR_solve.cpp6 x = m.colPivHouseholderQr().solve(y);
H A DFullPivHouseholderQR_solve.cpp6 x = m.fullPivHouseholderQr().solve(y);
H A DFullPivLU_solve.cpp5 Matrix<float,3,2> x = m.fullPivLu().solve(y);
H A DLLT_solve.cpp5 // and let's solve samples * [x y]^T = elevations in least square sense:
7 = (samples.adjoint() * samples).llt().solve((samples.adjoint()*elevations));
H A DTutorial_solve_multiple_rhs.cpp6 X = A.fullPivLu().solve(B);
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DBisectionSolver.java37 * @param f function to solve.
38 * @deprecated as of 2.0 the function to solve is passed as an argument
39 * to the {@link #solve(UnivariateRealFunction, double, double)} or
40 * {@link UnivariateRealSolverImpl#solve(UnivariateRealFunction, double, double, double)}
58 public double solve(double min, double max, double initial) method in class:BisectionSolver
60 return solve(f, min, max);
65 public double solve(double min, double max) method in class:BisectionSolver
67 return solve(f, min, max);
75 public double solve(final UnivariateRealFunction f, double min, double max, double initial) method in class:BisectionSolver
77 return solve(
82 public double solve(int maxEval, final UnivariateRealFunction f, double min, double max, double initial) method in class:BisectionSolver
89 public double solve(int maxEval, final UnivariateRealFunction f, double min, double max) method in class:BisectionSolver
100 public double solve(final UnivariateRealFunction f, double min, double max) method in class:BisectionSolver
[all...]
H A DUnivariateRealSolver.java75 * @deprecated replaced by {@link #solve(UnivariateRealFunction, double, double)}
79 double solve(double min, double max) throws ConvergenceException, FunctionEvaluationException; method in interface:UnivariateRealSolver
87 * @param f the function to solve.
100 double solve(UnivariateRealFunction f, double min, double max) method in interface:UnivariateRealSolver
118 * @deprecated replaced by {@link #solve(UnivariateRealFunction, double, double, double)}
122 double solve(double min, double max, double startValue) method in interface:UnivariateRealSolver
131 * @param f the function to solve.
145 double solve(UnivariateRealFunction f, double min, double max, double startValue) method in interface:UnivariateRealSolver
H A DNewtonSolver.java40 * @param f function to solve.
41 * @deprecated as of 2.0 the function to solve is passed as an argument
42 * to the {@link #solve(UnivariateRealFunction, double, double)} or
43 * {@link UnivariateRealSolverImpl#solve(UnivariateRealFunction, double, double, double)}
62 public double solve(final double min, final double max) method in class:NewtonSolver
64 return solve(f, min, max);
69 public double solve(final double min, final double max, final double startValue) method in class:NewtonSolver
71 return solve(f, min, max, startValue);
77 * @param f the function to solve
87 public double solve(in method in class:NewtonSolver
107 public double solve(final UnivariateRealFunction f, method in class:NewtonSolver
128 public double solve(int maxEval, final UnivariateRealFunction f, method in class:NewtonSolver
150 public double solve(final UnivariateRealFunction f, method in class:NewtonSolver
[all...]
H A DRiddersSolver.java43 * @param f function to solve
44 * @deprecated as of 2.0 the function to solve is passed as an argument
45 * to the {@link #solve(UnivariateRealFunction, double, double)} or
46 * {@link UnivariateRealSolverImpl#solve(UnivariateRealFunction, double, double, double)}
65 public double solve(final double min, final double max) method in class:RiddersSolver
67 return solve(f, min, max);
72 public double solve(final double min, final double max, final double initial) method in class:RiddersSolver
74 return solve(f, min, max, initial);
82 * @param f the function to solve
93 public double solve(in method in class:RiddersSolver
116 public double solve(final UnivariateRealFunction f, method in class:RiddersSolver
149 public double solve(int maxEval, final UnivariateRealFunction f, method in class:RiddersSolver
171 public double solve(final UnivariateRealFunction f, method in class:RiddersSolver
[all...]
H A DSecantSolver.java48 * @param f function to solve.
49 * @deprecated as of 2.0 the function to solve is passed as an argument
50 * to the {@link #solve(UnivariateRealFunction, double, double)} or
51 * {@link UnivariateRealSolverImpl#solve(UnivariateRealFunction, double, double, double)}
70 public double solve(final double min, final double max) method in class:SecantSolver
72 return solve(f, min, max);
77 public double solve(final double min, final double max, final double initial) method in class:SecantSolver
79 return solve(f, min, max, initial);
85 * @param f the function to solve
97 public double solve(in method in class:SecantSolver
119 public double solve(final UnivariateRealFunction f, method in class:SecantSolver
138 public double solve(int maxEval, final UnivariateRealFunction f, method in class:SecantSolver
158 public double solve(final UnivariateRealFunction f, method in class:SecantSolver
[all...]
/external/trappy/tests/
H A Dtest_stats_grammar.py38 self.assertEquals(parser.solve(eqn), 9)
41 self.assertEquals(parser.solve(eqn), 13)
55 parser.solve(eqn)[thermal_zone_id],
67 parser.solve(eqn)[thermal_zone_id],
74 parser.solve(eqn)[thermal_zone_id],
87 parser.solve(eqn)[thermal_zone_id],
99 mask = parser.solve(eqn)
109 self.assertTrue(parser.solve(eqn)[thermal_zone_id])
111 self.assertTrue(parser.solve(eqn)[thermal_zone_id])
119 sol1 = parser.solve("trapp
[all...]
/external/eigen/doc/examples/
H A DTutorialLinAlgComputeTwice.cpp17 cout << "The solution is:\n" << llt.solve(b) << endl;
22 cout << "The solution is now:\n" << llt.solve(b) << endl;
H A DTutorialInplaceLU.cpp29 cout << "[solve]" << endl;
32 VectorXd x = lu.solve(b);
34 cout << "[solve]" << endl;
38 x = lu.solve(b);
45 x = lu.solve(b);
57 x = lu.solve(b);
H A DTutorialLinAlgExComputeSolveError.cpp11 MatrixXd x = A.fullPivLu().solve(b);
H A DTutorialLinAlgExSolveColPivHouseholderQR.cpp15 Vector3f x = A.colPivHouseholderQr().solve(b);
H A DTutorialLinAlgExSolveLDLT.cpp14 Matrix2f x = A.ldlt().solve(b);
H A DTutorialLinAlgSVDSolve.cpp14 << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
H A DTutorial_PartialLU_solve.cpp16 Vector3f x = A.lu().solve(b);

Completed in 305 milliseconds

123456789