|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectcom.numericalmethod.suanshu.optimization.unconstrained.steepestdescent.SteepestDescent
com.numericalmethod.suanshu.optimization.unconstrained.steepestdescent.FirstOrder
public class FirstOrder
This implements the steepest descent search using the first order expansion of the Taylor's series. Specifically, we search along the negative gradient direction.
| Nested Class Summary | |
|---|---|
static class |
FirstOrder.Method
the methods available to do line search |
| Nested classes/interfaces inherited from class com.numericalmethod.suanshu.optimization.unconstrained.steepestdescent.SteepestDescent |
|---|
SteepestDescent.LineSearch |
| Field Summary |
|---|
| Fields inherited from class com.numericalmethod.suanshu.optimization.unconstrained.steepestdescent.SteepestDescent |
|---|
f, g, tol |
| Constructor Summary | |
|---|---|
FirstOrder()
Construct an instance of FirstOrder to minimize a function f,
using Fletcher's inexact line search method. |
|
FirstOrder(FirstOrder.Method method)
Construct an instance of FirstOrder to minimize a function f. |
|
| Method Summary | |
|---|---|
protected SteepestDescent.LineSearch |
getLineSearch()
|
| Methods inherited from class com.numericalmethod.suanshu.optimization.unconstrained.steepestdescent.SteepestDescent |
|---|
minimum, search, solve, solve, solve |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public FirstOrder(FirstOrder.Method method)
f.
method - the method to do line search, c.f., FirstOrder.Methodpublic FirstOrder()
f,
using Fletcher's inexact line search method.
| Method Detail |
|---|
protected SteepestDescent.LineSearch getLineSearch()
getLineSearch in class SteepestDescent
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||