What does this matlab statement do
Show older comments
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.
Accepted Answer
More Answers (0)
Categories
Find more on Axis Labels in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!