Can anybody explain such a function handle in Matlab?

@(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

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 MATLAB in Help Center and File Exchange

Asked:

on 25 Oct 2015

Edited:

on 22 Aug 2023

Community Treasure Hunt

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

Start Hunting!