Configures the server to compute only the eigenvalues in a specified range. Eigenvalues which are greater than lower and less than or equal to upper are computed.

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

Syntax

C#
public void ComputeEigenValueRange(
	float lower,
	float upper
)
Visual Basic (Declaration)
Public Sub ComputeEigenValueRange ( _
	lower As Single, _
	upper As Single _
)
Visual C++
public:
void ComputeEigenValueRange(
	float lower, 
	float upper
)

Parameters

lower
Type: System..::.Single
The lower bound for the range.
upper
Type: System..::.Single
The upper bound for the range.

See Also