Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to return a default widget structure if not enough input arguments are passed?

1 回表示 (過去 30 日間)
Zachary Reyes
Zachary Reyes 2018 年 11 月 8 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
function res = createWidget(typeArg, matArg, prongsArg, massArg)
if (HELP HERE)
res.type = '';
res.material = '';
res.prongs = 0;
res.mass = 0;
else
res.type = typeArg;
res.material = matArg;
res.prongs = prongsArg;
res.mass = massArg;
end
end
How would I go about creating that empty default structure if, say, only three input arguments are passed instead of the four? Thanks!

回答 (1 件)

Nick
Nick 2018 年 11 月 8 日
編集済み: Nick 2018 年 11 月 9 日
This is easily solved using nargin: https://nl.mathworks.com/help/matlab/ref/nargin.html.
A small example
function res = createWidget(typeArg, matArg, prongsArg, massArg)
% set default values
res.type = '';
res.material = '';
res.prongs = 0;
res.mass = 0;
% set parameters based on number of inputs
for ii = 1:nargin % if nargin is 0 loop gets bypassed
switch ii
case 1
res.type = typeArg;
case 2
res.material = matArg;
case 3
res.prongs = prongsArg;
case 4
res.mass = massArg;
end
end
end
  2 件のコメント
Guillaume
Guillaume 2018 年 11 月 8 日
You don't even need the if nargin>0 since the loop will be entirely bypassed anyway if nargin is 0.
Nick
Nick 2018 年 11 月 9 日
You are absolutely right. I never tried to give an empty vector to a for loop before so i assumed it would give an error. I updated my answer to match your comment. Thanks

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by