HomeSort by relevance Sort by last modified time
    Searched defs:jacobians (Results 1 - 11 of 11) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
ODEWithJacobians.java 18 package org.apache.commons.math.ode.jacobians;
ParameterizedODE.java 18 package org.apache.commons.math.ode.jacobians;
StepHandlerWithJacobians.java 18 package org.apache.commons.math.ode.jacobians;
40 * see the original state, and its jacobians in separate arrays.</p>
50 * <p>Dealing with low level step handlers is cumbersome if one really needs the jacobians
52 * state and jacobians on one side and compound state on the other side. So for performance
53 * reasons, it is recommended to use this interface <em>only</em> if jacobians are really
EventHandlerWithJacobians.java 18 package org.apache.commons.math.ode.jacobians;
53 * see the original state, and its jacobians in separate arrays.</p>
63 * <p>Dealing with low level event handlers is cumbersome if one really needs the jacobians
65 * state and jacobians on one side and compound state on the other side. So for performance
66 * reasons, it is recommended to use this interface <em>only</em> if jacobians are really
138 * org.apache.commons.math.ode.jacobians.ODEWithJacobians
146 * org.apache.commons.math.ode.jacobians.StepHandlerWithJacobians#handleStep(
161 * org.apache.commons.math.ode.jacobians.StepHandlerWithJacobians
163 * org.apache.commons.math.ode.jacobians.StepHandlerWithJacobians#handleStep(
StepInterpolatorWithJacobians.java 18 package org.apache.commons.math.ode.jacobians;
FirstOrderIntegratorWithJacobians.java 18 package org.apache.commons.math.ode.jacobians;
43 * is extended with jacobians of the raw ODE and the variational equations are
69 /** Build an enhanced integrator using internal differentiation to compute jacobians.
95 * @param ode original problem, which can compute the jacobians by itself
262 /** Dispatch a compound state array into state and jacobians arrays.
359 /** Wrapper class used to map state and jacobians into compound state. */
406 // compute raw ODE and its jacobians: dy/dt, d[dy/dt]/dy0 and d[dy/dt]/dp
452 /** Wrapper class to compute jacobians by finite differences for ODE which do not compute them themselves. */
455 /** Raw ODE without jacobians computation. */
467 /** Temporary array for state derivatives used to compute jacobians. *
    [all...]
  /external/ceres-solver/internal/ceres/
normal_prior_test.cc 81 // Compare the jacobians
107 double* jacobians[1]; local
108 jacobians[0] = NULL;
113 prior.Evaluate(&x, residuals.data(), jacobians);
autodiff_cost_function_test.cc 69 double** jacobians = new double*[2]; local
70 jacobians[0] = new double[2];
71 jacobians[1] = new double[2];
77 cost_function->Evaluate(parameters, &residuals, jacobians);
79 EXPECT_EQ(3, jacobians[0][0]);
80 EXPECT_EQ(4, jacobians[0][1]);
81 EXPECT_EQ(1, jacobians[1][0]);
82 EXPECT_EQ(2, jacobians[1][1]);
84 delete[] jacobians[0];
85 delete[] jacobians[1]
118 double** jacobians = new double*[10]; local
    [all...]
numeric_diff_test_utils.cc 66 double *jacobians[2] = { &dydx1[0], &dydx2[0] }; local
72 &jacobians[0]));
136 double *jacobians[2] = { &dydx1[0], &dydx2[0] }; local
142 &jacobians[0]));
residual_block_utils_test.cc 63 double* jacobians[] = { &jacobian }; local
68 jacobians,
73 // valid residuals and jacobians.
78 double** jacobians) const {
80 if (jacobians != NULL && jacobians[0] != NULL) {
81 jacobians[0][0] = 0.0;
93 double** jacobians) const {
96 if (jacobians != NULL && jacobians[0] != NULL)
    [all...]
autodiff_test.cc 196 double *jacobians[] = { J_PX }; local
198 b, parameters, 2, ad_x1, jacobians)));
211 double *jacobians[] = { J_P, J_X }; local
213 b, parameters, 2, ad_x2, jacobians)));
219 // Now compare the jacobians we got.
318 double *jacobians[] = { J_q, J_c, J_X }; local
320 b, parameters, 2, ad_x, jacobians)));
358 double *jacobians[] = { J_x }; local
370 functor, parameters, num_residuals, residuals, jacobians)));
520 double* jacobians[10] local
    [all...]

Completed in 201 milliseconds