math.function.MultivariateFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finwhale Show documentation
Show all versions of finwhale Show documentation
Statistical distributions library (in statu nascendi)
package math.function;
/**
* A double-valued multivariate function over double[] arrays.
*/
public interface MultivariateFunction {
double valueAt(double[] x);
}