Example usage for org.apache.commons.math3.analysis DifferentiableMultivariateFunction interface-usage

List of usage examples for org.apache.commons.math3.analysis DifferentiableMultivariateFunction interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.math3.analysis DifferentiableMultivariateFunction interface-usage.

Usage

From source file com.itemanalysis.psychometrics.cfa.ConfirmatoryFactorAnalysisEstimator.java

/**
 *
 * @author J. Patrick Meyer <meyerjp at itemanalysis.com>
 */
@Deprecated
public interface ConfirmatoryFactorAnalysisEstimator extends DifferentiableMultivariateFunction {

From source file edu.byu.nlp.math.CachedDifferentiableMultivariateFunction.java

/**
 * A {@link MultivariateRealFunction} that computes the value and gradient at the same time and caches the result
 * between invocations of {@code value()} and {@code gradient()}. Useful when there is overlap in the computation of the
 * value and gradient that is non-trivial computationally.
 * 
 * @author rah67

From source file edu.byu.nlp.stats.SymmetricDirichletMLEDifferentiableFunction.java

/**
 * @author rah67
 *
 */
public class SymmetricDirichletMLEDifferentiableFunction implements DifferentiableMultivariateFunction {