フィルターのクリア

Can anybody explain such a function handle in Matlab?

1 回表示 (過去 30 日間)
mike cool
mike cool 2015 年 10 月 25 日
編集済み: Stephen23 2023 年 8 月 22 日
@(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!

採用された回答

Stephen23
Stephen23 2015 年 10 月 25 日
編集済み: Stephen23 2023 年 8 月 22 日
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.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by