This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
f1 = @(x)x+1;
f2 = @(x)3*x;
f3 = @sqrt;
h = composeFcn(f1,f2,f3);
assert(isequal(h(9),10));
|
2 | Pass |
f = repmat({@(x)x+1},1,100);
h = composeFcn(f{:});
assert(isequal(h(0),100));
|
3 | Pass |
f = @(x)x;
h = composeFcn(f);
assert(isequal(h(1234),1234));
|
1092 Solvers
Back to basics 12 - Input Arguments
525 Solvers
251 Solvers
Create matrix of replicated elements
321 Solvers
Sum of diagonals elements of a matrix
166 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!