This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
f = @(x)x^2;
g = @(x)x+1;
h = compose(f,g);
assert(isequal(h(3),16));
|
2 | Pass |
%%
f = @round;
g = @sqrt;
h = compose(f,g);
assert(isequal(h(8),3));
|
686 Solvers
289 Solvers
965 Solvers
573 Solvers
07 - Common functions and indexing 4
319 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!