setParameterDefault

Simple function to set the default value for an optional function argument if omitted or empty.
197 download
Aggiornato 3 mag 2011

Visualizza la licenza

%Example:
function y = f(x,t)
setParameterDefault('x',1);
setParameterDefault('t',3);
y = 3*x-2*t;

try:
f('', 1); -> x=1 -> y = 1
f(2); -> t=3 -> y = 0
f('', []); -> x=1, t=3 -> y = -3

Cita come

Tobias Kienzler (2024). setParameterDefault (https://www.mathworks.com/matlabcentral/fileexchange/31285-setparameterdefault), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2010a
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Characters and Strings 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.1.0.0

description improved

1.0.0.0