Home | History | Annotate | Download | only in ode

Lines Matching refs:dimension

29  * <p>The transformation is done by changing the n dimension state
30 * vector to a 2n dimension vector, where the first n components are
63 /** second order problem dimension. */
64 private final int dimension;
81 dimension = equations.getDimension();
82 z = new double[dimension];
83 zDot = new double[dimension];
84 zDDot = new double[dimension];
87 /** Get the dimension of the problem.
88 * <p>The dimension of the first order problem is twice the
89 * dimension of the underlying second order problem.</p>
90 * @return dimension of the problem
93 return 2 * dimension;
107 System.arraycopy(y, 0, z, 0, dimension);
108 System.arraycopy(y, dimension, zDot, 0, dimension);
114 System.arraycopy(zDot, 0, yDot, 0, dimension);
115 System.arraycopy(zDDot, 0, yDot, dimension, dimension);