Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1:5;
y_correct = [3 -3 3 -3 3];
assert(isequal(your_fcn_name(x),y_correct))
o =
1 1 1 1 1
ans =
3 -3 3 -3 3
|
2 | Pass |
%%
x = 1:6;
y_correct = [7 -7 7 -7 7 -7]/2;
assert(isequal(your_fcn_name(x),y_correct))
o =
1 1 1 1 1 1
ans =
3.5000 -3.5000 3.5000 -3.5000 3.5000 -3.5000
|
3 | Pass |
%%
x = 1:-1:-5;
y_correct = -[2 -2 2 -2 2 -2 2];
assert(isequal(your_fcn_name(x),y_correct))
o =
1 1 1 1 1 1 1
ans =
-2 2 -2 2 -2 2 -2
|
Read a column of numbers and interpolate missing data
1235 Solvers
401 Solvers
Arrange vector in ascending order
624 Solvers
229 Solvers
452 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!