Description | Set the default pivot-editing threshold for MF_LUdecompose, MF_inv, and MF_solve. As this function is not thread-safe (if different threads call it with different values for thresh, the actual threshold will be undefined), it should not be used to set various thresholds for multiple calls to the functions mentioned. In this case, do not define a default threshold at all, but call the "wEdit" variants of the respective function, i.e., MF_LUdecomposewEdit, MF_invwEdit, or MF_solvewEdit.
Complex versions: The threshold is always real. In MF_LUdecompose, both the real and imaginary parts of possible pivots are compared to it. In case both are smaller, the division is performed with the real number thresh as the divisor.
To read the current threshold, use MF_LUDgetEdit |