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
Solution Comments
Show comments
Loading...
Problem Recent Solvers63
Suggested Problems
-
2188 Solvers
-
Find the largest value in the 3D matrix
1677 Solvers
-
Set the array elements whose value is 13 to 0
1446 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
14086 Solvers
-
Remove element(s) from cell array
2083 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!
what is "cf" in the code? Thanks.