HomeSort by relevance Sort by last modified time
    Searched refs:solve (Results 1 - 25 of 242) sorted by null

1 2 3 4 5 6 7 8 910

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DecompositionSolver.java 23 * 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
38 /** Solve the linear equation A × X = B for matrices A.
46 double[] solve(final double[] b) method in interface:DecompositionSolver
49 /** Solve the linear equation A × X = B for matrices A.
57 RealVector solve(final RealVector b) method in interface:DecompositionSolver
60 /** Solve the linear equation A × X = B for matrices A.
68 RealMatrix solve(final RealMatrix b) method in interface:DecompositionSolver
FieldDecompositionSolver.java 24 * 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
40 /** Solve the linear equation A × X = B for matrices A.
48 T[] solve(final T[] b) method in interface:FieldDecompositionSolver
51 /** Solve the linear equation A × X = B for matrices A.
59 FieldVector<T> solve(final FieldVector<T> b) method in interface:FieldDecompositionSolver
62 /** Solve the linear equation A &times; X = B for matrices A.
70 FieldMatrix<T> solve(final FieldMatrix<T> b) method in interface:FieldDecompositionSolver
  /external/eigen/doc/snippets/
LeastSquaresQR.cpp 4 << A.colPivHouseholderQr().solve(b) << endl;
Tutorial_solve_reuse_decomposition.cpp 7 x = luOfA.solve(b);
11 x = luOfA.solve(b);
LeastSquaresNormalEquations.cpp 4 << (A.transpose() * A).ldlt().solve(A.transpose() * b) << endl;
BiCGSTAB_simple.cpp 7 x = solver.solve(b);
11 x = solver.solve(b); // solve agai
Triangular_solve.cpp 9 << m.triangularView<Eigen::Upper>().solve(n) << endl;
11 << m.triangularView<Eigen::Upper>().solve<Eigen::OnTheRight>(n);
ColPivHouseholderQR_solve.cpp 6 x = m.colPivHouseholderQr().solve(y);
FullPivHouseholderQR_solve.cpp 6 x = m.fullPivHouseholderQr().solve(y);
FullPivLU_solve.cpp 5 Matrix<float,3,2> x = m.fullPivLu().solve(y);
LLT_solve.cpp 5 // and let's solve samples * [x y]^T = elevations in least square sense:
7 = (samples.adjoint() * samples).llt().solve((samples.adjoint()*elevations));
Tutorial_solve_multiple_rhs.cpp 6 X = A.fullPivLu().solve(B);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
BisectionSolver.java 37 * @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(f, min, max)
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...]
UnivariateRealSolver.java 62 * Solve for a zero root in the given interval.
75 * @deprecated replaced by {@link #solve(UnivariateRealFunction, double, double)}
79 double solve(double min, double max) throws ConvergenceException, FunctionEvaluationException; method in interface:UnivariateRealSolver
82 * Solve for a zero root in the given interval.
87 * @param f the function to solve.
100 double solve(UnivariateRealFunction f, double min, double max) method in interface:UnivariateRealSolver
104 * Solve for a zero in the given interval, start at startValue.
118 * @deprecated replaced by {@link #solve(UnivariateRealFunction, double, double, double)}
122 double solve(double min, double max, double startValue) method in interface:UnivariateRealSolver
126 * Solve for a zero in the given interval, start at startValue
145 double solve(UnivariateRealFunction f, double min, double max, double startValue) method in interface:UnivariateRealSolver
    [all...]
NewtonSolver.java 40 * @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(int maxEval, final UnivariateRealFunction f 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...]
RiddersSolver.java 43 * @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(int maxEval, final UnivariateRealFunction f 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...]
SecantSolver.java 48 * @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(int maxEval, final UnivariateRealFunction f 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/
test_stats_grammar.py 38 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("trappy.thermal.Thermal:temp"
    [all...]
  /external/eigen/doc/examples/
TutorialLinAlgComputeTwice.cpp 17 cout << "The solution is:\n" << llt.solve(b) << endl;
22 cout << "The solution is now:\n" << llt.solve(b) << endl;
TutorialInplaceLU.cpp 29 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);
TutorialLinAlgExComputeSolveError.cpp 11 MatrixXd x = A.fullPivLu().solve(b);
TutorialLinAlgExSolveColPivHouseholderQR.cpp 15 Vector3f x = A.colPivHouseholderQr().solve(b);
TutorialLinAlgExSolveLDLT.cpp 14 Matrix2f x = A.ldlt().solve(b);
TutorialLinAlgSVDSolve.cpp 14 << A.jacobiSvd(ComputeThinU | ComputeThinV).solve(b) << endl;
Tutorial_PartialLU_solve.cpp 16 Vector3f x = A.lu().solve(b);

Completed in 150 milliseconds

1 2 3 4 5 6 7 8 910