Suppose I have my own function named zeros on the Matlab path. Now I want to call the built-in zeros. How can I do that?
zeros
Use the builtin function:
builtin(function, arg1, ..., argN)
In your case e.g.:
builtin('zeros', 50)