Can anybody explain such a function handle in Matlab?

1 view (last 30 days)
@(z)func_example(x,y,z)
Can anybody kindly explain the above function handle in Matlab? I am only familiar with
@func_example
which does not have the variables in the brackets. Thanks in advance!

Accepted Answer

Stephen23
Stephen23 on 25 Oct 2015
Edited: Stephen23 on 22 Aug 2023
See:
which explains what you have given in your question:
@(z) % defines an anonymous function,
func_example % which calls this function
(x,y,z) % with these arguments
Note that x and y must exist in the workspace where this anonymous function is created, while the z is passed as a variable to the anonymous function when it is called.

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!