Effacer les filtres
Effacer les filtres

Can anybody explain such a function handle in Matlab?

1 vue (au cours des 30 derniers jours)
mike cool
mike cool le 25 Oct 2015
Modifié(e) : Stephen23 le 22 Août 2023
@(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!

Réponse acceptée

Stephen23
Stephen23 le 25 Oct 2015
Modifié(e) : Stephen23 le 22 Août 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.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by