Example usage for org.apache.commons.math3.ode FirstOrderConverter FirstOrderConverter

List of usage examples for org.apache.commons.math3.ode FirstOrderConverter FirstOrderConverter

Introduction

In this page you can find the example usage for org.apache.commons.math3.ode FirstOrderConverter FirstOrderConverter.

Prototype

public FirstOrderConverter(final SecondOrderDifferentialEquations equations) 

Source Link

Document

Simple constructor.

Usage

From source file:rcdemo.math.StateIntegrator.java

public StateIntegrator(SecondOrderDifferentialEquations ode2, RealVector y) {
    this(new FirstOrderConverter(ode2), y, 0, StateIntegrator.defaultIntegrator);
}