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