getarg

Get named argument from varargin
1,5K download
Aggiornato 2 mar 2012

Visualizza la licenza

Get named argument from varargin.
If nargout==1 returns the value. The value will be an empty cell if not found, or the default value if specified. If nargout==2, returns varargin with the argument removed, and the value.

Example:

out = doSomething( in, 'myOptionValue', 2 );

function out = doSomething( in, varargin )

%get the value specified by 'myOptionValue', return default value of 3.14 of not found.
[varargin,myOptionValue] = getarg( varargin, 'myOptionValue', 3.14 );
myOptionValue=myOptionValue{:};

%function body...

end

Cita come

Ivar Eskerud Smith (2024). getarg (https://www.mathworks.com/matlabcentral/fileexchange/35415-getarg), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2011b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Argument Definitions in Help Center e MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0