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!