Short description.
Write a function dealfun:
[y1,y2,...,yn]=dealfun(fhandle,x1,x2,...,xn)
which evaluates the function handle fhandle on arguments x1,x2,...,xn independently and deal solutions to outputs y1,y2,...,yn (so nargin==nargout+1)
Long description.
Several repetitions of exacly same operation on different variables can be a pain in the neck when you are editing your code.
a=a^2+mod(a,3); a=a^3+4*a+mod(a,3); b=b^2+mod(a,3); --> b=b^3+4*a+mod(a,3); c=c^2+mod(a,3); c=c^3+4*a+mod(a,3); d=d^2+mod(a,3); d=d^3+4*a+mod(a,3);
Of course there are as many strategies as programmers. There are also many helpful functions like cellfun arrayfun deal feval. But sometimes usage of those functions in one line looks unclear and it doesn't make editing faster. Usage of dealfun could look like that:
funh=@(A)A^2+mod(A,3); --> funh=@(A)A^3+4*A+mod(A,3); [a,b,c,d]=dealfun(@funh,a,b,c,d);
example:
>> [a,b,c,d]=dealfun(@sum,ones(1),ones(2),ones(3),ones(4)) a = 1 b = 2 2 c = 3 3 3 d = 4 4 4 4
easy change:
>> [a,b,c,d]=dealfun(@numel,ones(1),ones(2),ones(3),ones(4)) a = 1 b = 4 c = 9 d = 16
I think you try to get the "i" and "j" that the function nonzeros does not give:
http://www.mathworks.de/de/help/matlab/ref/nonzeros.html
Thanks José, I've fixed bugs.
"0" and not "false"... nice shot!
1579 Solvers
1735 Solvers
469 Solvers
Simple equation: Annual salary
3407 Solvers
1228 Solvers