Syntax:
DEFAULTS('Variable',Value)
Problem:
Usually in a function call:
out = function(Var1, Var2)
if (~exist('Var1','var')
Var1 = 1234;
end
if (~exist('Var2','var')
Var2 = 3456;
end
This gets tedious after a while.
Solution using DEFAULTS
out = function(Var1, Var2)
defaults('Var1',1234,'Var2',3456);
引用
jl (2024). defaults.m (https://www.mathworks.com/matlabcentral/fileexchange/47394-defaults-m), MATLAB Central File Exchange. に取得済み.
MATLAB リリースの互換性
作成:
R2011a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linuxカテゴリ
Help Center および MATLAB Answers で Argument Definitions についてさらに検索
タグ
謝辞
ヒントを与えたファイル: image segmentation, edge detection with parametrique filter DKl
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!バージョン | 公開済み | リリース ノート | |
---|---|---|---|
1.0.0.0 |