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))
m =
1
n =
4
m1 =
1
n1 =
3
z =
1
2
3
4
z1 =
2 3 4
y =
2 3 4
|
2 | Pass |
x = [5;2;8;6;7;2;3];
y_correct = [7;2;3];
assert(isequal(last_three(x),y_correct))
m =
7
n =
1
m1 =
3
n1 =
1
z =
5
2
8
6
7
2
3
z1 =
7 2 3
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))
m =
1
n =
10
m1 =
1
n1 =
3
z =
1.2000
3.6000
2.5000
2.7000
2.8000
8.6000
9.2000
2.7000
3.7000
-4.9000
z1 =
2.7000 3.7000 -4.9000
y =
2.7000 3.7000 -4.9000
|
1900 Solvers
Back to basics 21 - Matrix replicating
1052 Solvers
299 Solvers
184 Solvers
175 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!