Handle to an array of functions - MATLAB Cody - MATLAB Central

Problem 1198. Handle to an array of functions

Difficulty:Rate

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

30.57% Correct | 69.43% Incorrect
Last Solution submitted on Oct 16, 2025

Problem Comments

Solution Comments

Show comments
Join Cody Contest 2025 — Have Fun and Win Prizes!
...
We’re excited to invite you to Cody Contest 2025! 🎉 Pick a team,...
🚀 MATLAB EXPO 2025 – Day 2 Starts Tomorrow, November 13!
Don’t miss out on two incredible keynotes that will shape the future...
0

Problem Recent Solvers60

Suggested Problems

More from this Author11

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!