  | FloatHermitianEigDecompServerAbsTolerance Property | 
            Gets and sets the absolute tolerance for each eigenvalue.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic float AbsTolerance { get; set; }Public Property AbsTolerance As Single
	Get
	Set
public:
property float AbsTolerance {
	float get ();
	void set (float value);
}member AbsTolerance : float32 with get, set
Property Value
Single
RemarksAn approximate eigenvalue is accepted as converged when it
            lies in an interval [a,b] of width less than or equal to 
            AbsTolerance + epsilon * max(abs(a),abs(b)), where
            epsilon is machine presicision. If AbsTolerance is set
            less than or equal to zero then epsilon * ||T|| is
            used, where T is the tridiagonal matrix obtained by
            reducing the decomposed matrix to tridiagonal form, and ||T||
            is the one-norm of T.
See Also