Package PyDSTool :: Package Toolbox :: Package optimizers :: Package step :: Module conjugate_gradient_step :: Class ConjugateGradientStep
[hide private]
[frames] | no frames]

Class ConjugateGradientStep

source code

object --+
         |
        ConjugateGradientStep

The basic conjugate gradient step

Instance Methods [hide private]
 
__init__(self, coeff_function)
Initialization of the gradient step
source code
 
__call__(self, function, point, state)
Computes a gradient step based on a function and a point
source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, coeff_function)
(Constructor)

source code 

Initialization of the gradient step

  • coeff_function is the function that will compute the appropriate coefficient
Overrides: object.__init__