defaultValue - set default value for optional arguments

版本 1.0.0.0 (1.0 KB) 作者: Luca Amerio
Assigns default value to funtion optional input variable
49.0 次下载
更新时间 2016/1/27

查看许可证

DEFAULTVALUE Assigns default value to funtion input variable
DEFAULTVALUE ('NAME',VAL) check if variable NAME doesn't exist or
is empty. If this is the case, it assigns it the value VAL.
DEFAULTVALUE ('NAME',VAL,EMPTYVAL) assigns value VAL to variable
NAME if it doesn't exists or value EMPTYVAL if it's empty.
NOTE: The variable value IS NOT the function output. The function must
be called without output

Example:
function c=sumab(a,b)
% This function can be called either with one or two input arguments
narginchk(1,2)
defaultValue('b',1)
c=a+b;

By Luca Amerio
luca.amerio@polimi.it
27/01/2016

引用格式

Luca Amerio (2024). defaultValue - set default value for optional arguments (https://www.mathworks.com/matlabcentral/fileexchange/55120-defaultvalue-set-default-value-for-optional-arguments), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2015b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Performance and Memory 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0