File Exchange Pick of the Week

Our best user submissions

Advanced MATLAB: Varargin and Nargin- variable inputs to a function

Most MATLAB functions are overloaded. That means that there are several ways to call them and that MATLAB will “Do The Right Thing” based on the number and types of inputs. As a simple example you can call SUM

sum(M) %this will sum along the columns
sum(M,2) %this will sum along the rows

This video shows how you can implement the same behavior based on using

VARARGIN: VARiable ARGuments IN
NARGIN: Number ARGuments IN

Other videos have been gathered here:
https://blogs.mathworks.com/pick/category/video/

Other Advanced MATLAB posts have been gathered here:
https://blogs.mathworks.com/pick/category/advanced-matlab/

|
  • print

Comments

To leave a comment, please click here to sign in to your MathWorks Account or create a new one.