<< addpath | Functions manager | clearfun >> |
builtin(function_name; x1, ..., xn) |
builtin(function_handle; x1, ..., xn) |
[r1, ..., rn] = builtin(function_name, x1, ..., xn) |
[r1, ..., rn] = builtin(function_handle, x1, ..., xn) |
a string: function name.
a function handle.
input arguments of the builtin.
output arguments returned by the builtin
builtin calls the base built-in described by its name or function handle and input arguments.
a = builtin('cos', 0)
b = builtin(str2func('cos'), 0)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET