Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4];
y_correct = [2 3 4];
assert(isequal(last_three(x),y_correct))
|
2 | Pass |
x = [5;2;8;6;7;2;3];
y_correct = [7;2;3];
assert(isequal(last_three(x),y_correct))
y =
7
2
3
|
3 | Pass |
x = [1.2 3.6 2.5 2.7 2.8 8.6 9.2 2.7 3.7 -4.9];
y_correct = [2.7 3.7 -4.9];
assert(isequal(last_three(x),y_correct))
|
Getting the absolute index from a matrix
178 Solvers
Create a Multiplication table matrix...
226 Solvers
The sum of the numbers in the vector
342 Solvers
Switch matrix to a column vector
189 Solvers
poll: would you like the regexp (?@cmd) functionality to be banned in Cody?
147 Solvers