LineSearch

A line search optimizes a function of one variable without analytic gradient information. Differs only in whether or not it tries to find an exact minimizer

Companion
object
class Object
trait Matchable
class Any

Type members

Inherited classlikes

final case class State(alpha: Double, value: Double, deriv: Double)
Inherited from
ApproximateLineSearch

Value members

Inherited methods

def iterations(f: DiffFunction[Double], init: Double): Iterator[State]
Inherited from
ApproximateLineSearch
def minimize(f: DiffFunction[Double], init: Double): Double
Inherited from
ApproximateLineSearch