- `feval (NAME, ARG1, ARG2, ...)`
- `feval (FCN_HANDLE, ARG1, ARG2, ...)`
- `[OUT1, OUT2, ...] = feval (...)`

Evaluate the function named by `NAME` or referenced by `FCN_HANDLE`.

Arguments after the function name or handle are passed to the called function.

See also: `builtin`, `str2func`, `func2str`.

### References

- https://www.mathworks.com/help/matlab/ref/feval.html
- https://octave.sourceforge.io/octave/function/feval.html
