SuanShu, a Java numerical and statistical library

com.numericalmethod.suanshu.optimization.unconstrained
Interface UnconstrainedMinimizer

All Superinterfaces:
Minimizer
All Known Implementing Classes:
BFGS, ConjugateGradient, DFP, FirstOrder, FletcherReeves, GaussNewton, Huang, McCormick, NelderMead, NewtonRaphson, Pearson, Powell, QuasiNewton, RankOne, SteepestDescent, Zangwill

public interface UnconstrainedMinimizer
extends Minimizer


Method Summary
 void solve(RealScalarFunction f, double tol)
           
 void solve(UnconstrainedProblem problem, double tol)
           
 
Methods inherited from interface com.numericalmethod.suanshu.optimization.Minimizer
minimum, search
 

Method Detail

solve

void solve(UnconstrainedProblem problem,
           double tol)

solve

void solve(RealScalarFunction f,
           double tol)

SuanShu, a Java numerical and statistical library

Copyright © 2011 Numerical Method Inc. Ltd. All Rights Reserved.