MATLAB: How does a function invoke the inputs

functioninputmatlab function

function [result] = test02(type,a,b,c,d)
%This function is used to test what will happen if only part of the inputs
%are needed to get the result.
switch type
case '1'
result=a+b;
case '2'
result=a+b+c+d;
otherwise
warning('Unexpected input type. Please check the input.')
end
end
I wonder how Matlab function tacitly 'uses' the inputs, so I wrote the function above and type the piece of codes below in the command line to see what if only part of the inputs are given. Unexpectedly, no error came up (Personally 'c' and 'd' are not essential to get the result for case '1'). Could anyone explain the reason why the function still works when only part of the inputs (type, a, b) are given? What's the mechanism of calling the inputs in a Matlab function?
type= '1';
a=1; b=2; c=3; d=4;
[result] = test02(type,a,b)

Best Answer

  1. MATLAB's function input and output arguments are entirely positional. Their names are irrelevant.
  2. When calling a function, you need to provide the inputs that are used in the code that actually runs, e.g. if only the 3rd input is used in the code that runs then the 3rd input must be provided.
  3. ...but because of rule 1., this means you also also need to provide the 1st and 2nd inpust as well, although their values will be completely ignored because the code that runs does not use them.
  4. Unused inputs cannot be left "blank". Usually an empty array is used.