Uses of Package
edu.mines.jtk.opt

Packages that use edu.mines.jtk.opt
edu.mines.jtk.opt Code for Gauss-Newton and conjugate-gradient inversion and optimization. 
 

Classes in edu.mines.jtk.opt used by edu.mines.jtk.opt
ArrayVect1
          Implements a Vect by wrapping an array of doubles.
ArrayVect1f
          Implements a Vect by wrapping an array of floats.
ArrayVect1fs
          Implements a Vect as a collection of ArrayVect1f's of fixed size.
ArrayVect2
          Implement a Vect as a two dimensional array of doubles.
ArrayVect2f
          Implement a Vect as a two dimensional array of floats.
ArrayVect3f
          Implement a Vect as a three-dimensional array of floats.
BrentMinFinder.Function
          A function f(x) of one variable x.
BrentZeroFinder.Function
          A function f(x) of one variable x.
LinearTransform
          Define methods applying a linear transform and its transpose
LineSearch.Function
          The function to be minimized.
LineSearch.Result
          The result of a line search.
Quadratic
          Define a second-order quadratic operation on a Vector 0.5 x'Hx + b'x where H is a positive semidefinite quadratic and b is a linear gradient.
ScalarSolver.Function
          Implement a function of one variable to be minimized
ScalarVect
          Implements a Vect by wrapping a single double
Transform
          Implement a non-linear transform and its linearizations for a non-linear optimization.
Vect
          Implement a vector supporting linear vector-space methods Test your implementation with VectUtil.test().
VectArray
          A VectContainer implemented as an array, with sequential indices.
VectConst
          Vector operations that do not change the state of the vector
VectContainer
          Treat an indexed collection of Vects as a new Vect.
VectMap
          A VectContainer implemented as an unsynchronized Map.