 | DoubleHermitianEigDecompServerAbsTolerance Property |
Gets and sets the absolute tolerance for each eigenvalue.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic double AbsTolerance { get; set; }
Public Property AbsTolerance As Double
Get
Set
public:
property double AbsTolerance {
double get ();
void set (double value);
}
member AbsTolerance : float with get, set
Property Value
Double
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