defaults.m

バージョン 1.0.0.0 (1.92 KB) 作成者: jl
Utility function to simplify setting default values for variables in functions.
ダウンロード: 308
更新 2014/7/30

ライセンスの表示

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 AnswersArgument 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