What does this matlab statement do
古いコメントを表示
i have a statement in my matlab program:
f = @(A)DistanceGauss(A,x_axis,Y_target,Y_initial,numOf,modus);
I understood that : f is defined as the function handle to the function distancegauss which contains the paramenters/arg list present inside the paranthesis.
what does the variable "A" in @(A) do? does it have any imporatance...while browsing i found that the variables within paranthesis after @ would be the input arguments for an anonymous function..
can anyone explain what does that "A" do? will this handle work even without that "A" after @ symbol ?, because it is already present as an arg to be passed after the function name.
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Axis Labels についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!