My problem is one function passing to me a Anonymous function handle, for example,
f_handle = function1(a1,a2,...
As I only get this handle, (and I know there are two unknown parameters of a and b), now I want to change (set) the parameter values of a and b, I don't know how to do it.
b=1; a=1:10;
x = 1; y =2;
for i=1:10
mm{i} = f_handle(x,y);
end
Should I redefine a anonymous function or by other way?
0 Comments
Sign in to comment.