Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5 6 7 8 9];
y_correct = [7 8 9];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [1 2 3];
y_correct = [1 2 3];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = [0 0 0];
y_correct = [0 0 0];
assert(isequal(your_fcn_name(x),y_correct))
|
4 | Pass |
x = [3 3 3 1 1 1 2 3 4];
y_correct = [3 3 3];
assert(isequal(your_fcn_name(x),y_correct))
|
5 | Pass |
x = 1000:-1:1;
y_correct = [1000 999 998];
assert(isequal(your_fcn_name(x),y_correct))
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35574 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
253 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
89 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!