Problem 1198. Handle to an array of functions
Given a cell array of functions that operate on scalars, it is required to return a function handle to process a vector of values applying the functions successively (the first function operates on x, the second function operates on the resulting output, etc.).
Example:
>> f{1}=@(x) x^2;
>> f{2}=@(x) x+3;
>> f{3}=@(x) x/2;
>> g=cf(f);
>> x=[1 2 3];
>> g(x)
ans =
2.0000 3.5000 6.0000
Solution Stats
Problem Comments
-
1 Comment
Dejia Kong
on 14 Jan 2020
what is "cf" in the code? Thanks.
Solution Comments
Show commentsProblem Recent Solvers57
Suggested Problems
-
Sum all integers from 1 to 2^n
15307 Solvers
-
Project Euler: Problem 16, Sums of Digits of Powers of Two
139 Solvers
-
Back to basics 16 - byte order
193 Solvers
-
Make an awesome ramp for a tiny motorcycle stuntman
652 Solvers
-
The Answer to Life, the Universe, and Everything
528 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!