[itnlim, cw, iw, rw, ifail] = e04nx('Iterations', cw, iw, rw);will result in the value of the optional parameter Iterations Limit being output in itnlim.
None.
Open in the MATLAB editor: e04nx_example
function e04nx_example fprintf('e04nx example results\n\n'); string = 'Elastic mode'; elmode = int64(1); % Initialize [cw, iw, rw, ifail] = e04np; % Set option [cw, iw, rw, ifail] = e04nt( ... string, elmode, cw, iw, rw); % Get option value [ivalue, cw, iw, rw, ifail] = e04nx( ... string, cw, iw, rw); fprintf('%s has been set to %4d\n', string, ivalue);
e04nx example results Elastic mode has been set to 1