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

smile.math.MultivariateFunction Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
/******************************************************************************
 *                   Confidential Proprietary                                 *
 *         (c) Copyright Haifeng Li 2011, All Rights Reserved                 *
 ******************************************************************************/

package smile.math;

/**
 * An interface representing a multivariate real function.
 *
 * @author Haifeng Li
 */
public interface MultivariateFunction {
    /**
     * Compute the value of the function at x.
     */
    public double f(double[] x);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy