What does this matlab statement do
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Axis Labels en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!