Computes a step size alphak for performing the update xk+1 = xk + alphak*pk, where pk is the step direction vector.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
double ComputeStepSize(
	SequentialQuadraticProgrammingSolver..::.Iteration currentIteration
)
Visual Basic (Declaration)
Function ComputeStepSize ( _
	currentIteration As SequentialQuadraticProgrammingSolver..::.Iteration _
) As Double
Visual C++
double ComputeStepSize(
	SequentialQuadraticProgrammingSolver..::.Iteration^ currentIteration
)

Parameters

currentIteration
Type: CenterSpace.NMath.Analysis..::.SequentialQuadraticProgrammingSolver..::.Iteration
Current iteration information data structure.

Return Value

The step size.

See Also