[featol, cw, iw, rw, ifail] = e04ny('Feasibility Tolerance', cw, iw, rw);will result in the value of the optional parameter Feasibility Tolerance being output in featol.
None.
Open in the MATLAB editor: e04ny_example
function e04ny_example fprintf('e04ny example results\n\n'); string = 'Feasibility tolerance'; featol = 0.0001; % Initialize [cw, iw, rw, ifail] = e04np; %Set option [cw, iw, rw, ifail] = e04nu( ... string, featol, cw, iw, rw); % Get option [rvalue, cw, iw, rw, ifail] = e04ny( ... string, cw, iw, rw); fprintf('%s has been set to %12.5e\n', string, rvalue);
e04ny example results Feasibility tolerance has been set to 1.00000e-04