Searched defs:dFdP (Results 1 - 2 of 2) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
H A DODEWithJacobians.java47 * @param dFdP placeholder array where to put the jacobian of the ODE with respect to the parameters
51 void computeJacobians(double t, double[] y, double[] yDot, double[][] dFdY, double[][] dFdP) argument
H A DFirstOrderIntegratorWithJacobians.java372 private final double[][] dFdP; field in class:FirstOrderIntegratorWithJacobians.MappingWrapper
383 dFdP = new double[n][k];
390 final int k = dFdP[0].length;
404 final int k = dFdP[0].length;
412 ode.computeJacobians(t, y, yDot, dFdY, dFdP);
435 final double[] dFdPi = dFdP[i];
504 double[][] dFdY, double[][] dFdP)
531 dFdP[i][j] = (tmpDot[i] - yDot[i]) / hP[j];
503 computeJacobians(double t, double[] y, double[] yDot, double[][] dFdY, double[][] dFdP) argument

Completed in 77 milliseconds