Reputation: 4136
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
Upvotes: 2
Views: 135
Reputation: 539
Use the builtin function:
builtin(function, arg1, ..., argN)
In your case e.g.:
builtin('zeros', 50)
Upvotes: 4