MATLAB Function Reference | Search  Help Desk |
builtin | See Also |
Execute builtin function from overloaded method
builtin(function
,x1,...,xn) [y1,..,yn] = builtin(function
,x1,...,xn)
builtin
is used in methods that overload builtin functions to execute the original builtin function. If function
is a string containing the name of a builtin function,then:
builtin(function
,x1,...,xn)
evaluates that function at the given arguments.
[y1,..,yn] = builtin(function
,x1,...,xn)
returns multiple output arguments.
builtin
(...) is the same as feval
(...) except that it calls the original builtin version of the function even if an overloaded one exists. (For this to work you must never overload builtin
.)
feval
Function evaluation