Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
f = @(x)x^2;
g = @(x)x+1;
h = composeFcn(f,g);
assert(isequal(h(3),16));
|
2 | Fail |
f = @round;
g = @sqrt;
h = composeFcn(f,g);
assert(isequal(h(8),3));
|
202 Solvers
Back to basics 20 - singleton dimensions
254 Solvers
How many trades represent all the profit?
520 Solvers
531 Solvers
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!