Class ComplexODEStateAndDerivative

java.lang.Object
org.hipparchus.ode.ComplexODEState
org.hipparchus.ode.ComplexODEStateAndDerivative
All Implemented Interfaces:
Serializable

public class ComplexODEStateAndDerivative extends ComplexODEState
Container for time, main and secondary state vectors as well as their derivatives.
See Also:
  • Constructor Details

    • ComplexODEStateAndDerivative

      public ComplexODEStateAndDerivative(double time, Complex[] primaryState, Complex[] primaryDerivative)
      Simple constructor.

      Calling this constructor is equivalent to call ComplexODEStateAndDerivative(time, state, derivative, null, null).

      Parameters:
      time - time
      primaryState - primary state at time
      primaryDerivative - derivative of the primary state at time
    • ComplexODEStateAndDerivative

      public ComplexODEStateAndDerivative(double time, Complex[] primaryState, Complex[] primaryDerivative, Complex[][] secondaryState, Complex[][] secondaryDerivative)
      Simple constructor.
      Parameters:
      time - time
      primaryState - primary state at time
      primaryDerivative - derivative of the primary state at time
      secondaryState - state at time (may be null)
      secondaryDerivative - derivative of the state at time (may be null)
  • Method Details