setParameterDefault

버전 1.1.0.0 (1.93 KB) 작성자: Tobias Kienzler
Simple function to set the default value for an optional function argument if omitted or empty.
다운로드 수: 197
업데이트 날짜: 2011/5/3

라이선스 보기

%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

인용 양식

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

MATLAB 릴리스 호환 정보
개발 환경: R2010a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

description improved

1.0.0.0