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));
|
1091 Solvers
1601 Solvers
1263 Solvers
Determine the number of odd integers in a vector
435 Solvers
432 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!