[factol, iw, rw, ifail] = e04wl('LU Factor Tolerance', iw, rw);will result in the value of the optional parameter LU Factor Tolerance being output in factol.
None.
Open in the MATLAB editor: e04wl_example
function e04wl_example fprintf('e04wl example results\n\n'); string = 'LU Factor Tolerance'; factol = 1e-3; % Initialize [iw, rw, ifail] = e04wc; % Set option [iw, rw, ifail] = e04wh( ... string, factol, iw, rw); % Get option value [rvalue, iw, rw, ifail] = e04wl( ... string, iw, rw); fprintf('%s has been set to %10.2e\n', string, rvalue);
e04wl example results LU Factor Tolerance has been set to 1.00e-03