| MF_SVDsetEdit
| MD_SVDsetEdit |
ME_SVDsetEdit |
|
| Function | set the Singular Value editing threshold |
|
| Syntax C/C++ | #include <MFstd.h>
void MF_SVDsetEdit( float Thresh ); |
| C++ MatObj | #include <OptiVec.h>
void matrix<T>::SVDsetEdit( const T& Thresh ); |
| Pascal/Delphi | uses MFstd;
procedure MF_SVDsetEdit( Thresh:Single ); |
|
| Description | As described in connection with MF_SVdecompose and MF_SVsolve, the crucial point in using functions which rely on Singular Value Decomposition is the Singular Value editing step. By default, the SV editing threshold is 4*FLT_EPSILON, 8*DBL_EPSILON, or 16*LDBL_EPSILON. You may change these values by calling MF_SVDsetEdit. To retrieve the current SV editing threshold, call MF_SVDgetEdit. |
|
|