com.meliorbis.numerics.fixedpoint.FixedPointFinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
package com.meliorbis.numerics.fixedpoint;
import com.meliorbis.numerics.function.MultiVariateVectorFunction;
/**
* Created by toby on 28/01/2014.
*/
public interface FixedPointFinder
{
double[] findFixedPoint(MultiVariateVectorFunction function_, double[] initialVals_);
public void setDamping(double damping_);
}