All Downloads are FREE. Search and download functionalities are using the official Maven repository.

breeze.integrate.OdeIntegrator.scala Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package breeze.integrate

import breeze.linalg._

trait OdeIntegrator {
  def integrate(
    f: (DenseVector[Double], Double) => DenseVector[Double],
    y0: DenseVector[Double],
    t: Array[Double]): Array[DenseVector[Double]]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy