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));
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35546 Solvers
900 Solvers
123 Solvers
Permute diagonal and antidiagonal
224 Solvers
Replace multiples of 5 with NaN
358 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!