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));
|
401 Solvers
251 Solvers
317 Solvers
Find nearest prime number less than input number
269 Solvers
432 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!