Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [10 20 30;40 50 60];
y_correct = [10; 40;20; 50; 30; 60;]
assert(isequal(Mat2Vector(x),y_correct))
y_correct =
10
40
20
50
30
60
|
2 | Pass |
%%
x=[-2 -4 -6; -1 -3 -5; -10 -20 0]
y_correct = [-2; -1;-10; -4; -3;-20; -6;-5;0]
assert(isequal(Mat2Vector(x),y_correct))
x =
-2 -4 -6
-1 -3 -5
-10 -20 0
y_correct =
-2
-1
-10
-4
-3
-20
-6
-5
0
|
3 | Pass |
%%
x=[1 2 3 4 5; 6 7 8 9 10];
x(:,:,2) = [10 20 30 40 50;60 70 80 90 100];
y_correct = [1;6;2;7;3;8;4;9;5;10;10;60;20;70;30;80;40;90;50;100]
assert(isequal(Mat2Vector(x),y_correct))
y_correct =
1
6
2
7
3
8
4
9
5
10
10
60
20
70
30
80
40
90
50
100
|
Back to basics 23 - Triangular matrix
634 Solvers
Check if number exists in vector
4465 Solvers
420 Solvers
309 Solvers
404 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!