Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3];
y_correct = [1 2 4];
assert(isequal(incrementor(x),y_correct))
x =
'1 2 3'
|
2 | Pass |
x = [1 9 1 9];
y_correct = [1 9 2 0];
assert(isequal(incrementor(x),y_correct))
x =
'1 9 1 9'
|
3 | Pass |
x = [9 9 9];
y_correct = [1 0 0 0];
assert(isequal(incrementor(x),y_correct))
x =
'9 9 9'
|
Find the sum of all the numbers of the input vector
31965 Solvers
2183 Solvers
Read a column of numbers and interpolate missing data
1235 Solvers
3070 Solvers
Rounding off numbers to n decimals
1050 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!