Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
f{1}=@(x) x^2;
f{2}=@(x) x+3;
f{3}=@(x) x/2;
g=cf(f);
x=[1 2 3];
y_correct = [2 3.5 6];
assert(isequal(g(x),y_correct))
|
2 | Fail |
f{1}=@(x) x^0.5;
f{2}=@(x) x-1;
f{3}=@(x) x^2;
f{4}=@(x) x/3;
g=cf(f);
x=[ 16 49 100];
y_correct = [3 12 27];
assert(isequal(g(x),y_correct))
|
54 Solvers
128 Solvers
965 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
669 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!