[featol, cw, iw, rw, ifail] = e04vr('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: e04vs_example
function e04vs_example fprintf('e04vs example results\n\n'); featol = 1e-6; string = 'Feasibility Tolerance'; % Initialize [cw, iw, rw, ifail] = e04vg; % Set option [cw, iw, rw, ifail] = e04vn( ... string, featol, cw, iw, rw); % Get option [rvalue, cw, iw, rw, ifail] = e04vs( ... string, cw, iw, rw); fprintf('%s has been set to %10.2e\n', string, rvalue);
e04vs example results Feasibility Tolerance has been set to 1.00e-06