Problem 1224. Flexible Anonymous Function
Given a function handle, return a handle to a function that would accept an arbitrary number of inputs, applies the function to each input, and returns an arbitrary number of (respective) outputs (<= the number of inputs, of course).
Example:
myf=@(x) det(x);
yourf = flexf(myf);
[a,~,b,c] = yourf([1 2;3 4],7,[1 2 3; 4 5 6; 2 3 1],3,[2 -1 ; 1 -1])
a = -2 b = 9 c = 3
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers32
Suggested Problems
-
Find the sum of the elements in the "second" diagonal
1149 Solvers
-
Getting the indices from a vector
9820 Solvers
-
Set some matrix elements to zero
537 Solvers
-
Cell Counting: How Many Draws?
1903 Solvers
-
Circular Primes (based on Project Euler, problem 35)
494 Solvers
More from this Author11
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!