Searched refs:dydp (Results 1 - 2 of 2) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
H A DEventHandlerWithJacobians.java123 * @param dydp array containing the current value of the jacobian of
128 double g(double t, double[] y, double[][] dydy0, double[][] dydp) argument
188 * @param dydp array containing the current value of the jacobian of
198 int eventOccurred(double t, double[] y, double[][] dydy0, double[][] dydp, argument
218 * @param dydp array containing the current value of the jacobian of
223 void resetState(double t, double[] y, double[][] dydy0, double[][] dydp) argument
H A DFirstOrderIntegratorWithJacobians.java266 * @param dydp jacobian array to fill
269 final double[][] dydy0, final double[][] dydp) {
272 final int k = dydp[0].length;
284 System.arraycopy(z, n * (n + 1) + i * k, dydp[i], 0, k);
603 private double[][] dydp; field in class:FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper
631 dydp = new double[n][k];
680 final int k = dydp[0].length;
683 System.arraycopy(extendedState, start, dydp[i], 0, k);
686 return dydp;
729 final int k = dydp[
268 dispatchCompoundState(final double[] z, final double[] y, final double[][] dydy0, final double[][] dydp) argument
854 private double[][] dydp; field in class:FirstOrderIntegratorWithJacobians.EventHandlerWrapper
[all...]

Completed in 96 milliseconds