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: NMathPremium (in NMathPremium.dll) Version: 5.3.0.0

Syntax

C#
public void ComputeEigenValueRange(
	double lower,
	double upper
)
Visual Basic
Public Sub ComputeEigenValueRange ( _
	lower As Double, _
	upper As Double _
)
Visual C++
public:
void ComputeEigenValueRange(
	double lower, 
	double upper
)

Parameters

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

See Also