Problem 5387. Triple function composition

Given three functions f,g and h, create the composed function y=f(g(h)).

Example

 f = @(x) x+1
 g = @(x) x/2
 h = @(x) x^2

And x1=8; x2=10; x3=1;

 y(x1) = 33
 y(x2) = 51
 y(x3) = 1.5

Solution Stats

43.64% Correct | 56.36% Incorrect
Last Solution submitted on Oct 19, 2023

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers43

Suggested Problems

More from this Author1

Community Treasure Hunt

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

Start Hunting!