This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1:10;
y_correct = 2:2:20;
assert(isequal(f(x),y_correct))
|
2 | Pass |
x = [0.2400 0.4173 0.0497 0.9027 0.9448 0.4909 0.4893];
y_correct = [1.2400 2.4173 3.0497 4.9027 5.9448 6.4909 7.4893];
assert(isequal(f(x),y_correct))
|
3 | Pass |
x = [4124 52351 pi i -242];
y_correct = [4125 52353 pi+3 4+i -237];
assert(isequal(f(x),y_correct))
|
819 Solvers
Celsius to Fahrenheit converter
388 Solvers
489 Solvers
246 Solvers
142 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!