Overloading functions

In short : No, it is not possible.

However, You can mimic this kind of behavior:

Obviously, since Matlab is a dynamic language, you can pass arguments of any type and check them.

function foo(x)
    if isnumeric(x)
        disp(' Numeric behavior');
    elseif ischar(x)
        disp(' String behavior');
    end
end

You can also use varargin, and check the number of parameters, and change the behavior

function goo(varargin)
    if nargin == 2
        disp('2 arguments behavior');
    elseif nargin == 3
        disp('3 arguments behavior');   
    end
end

Leave a Comment