Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = magic(4);
y=[16 2 3 13 10 7 4 14 15 1];
assert(isequal(z_mat(a),y))
out1 =
16 2 3 13 10 7 4 14 15 1
|
2 | Pass |
a = ones(77);
y=ones(1,229);
assert(isequal(z_mat(a),y))
out1 =
Columns 1 through 29
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 30 through 58
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 59 through 87
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 88 through 116
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 117 through 145
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 146 through 174
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 175 through 203
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Columns 204 through 229
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
|
3 | Pass |
a = eye(7);
y=[1,zeros(1,8),1,zeros(1,8),1];
assert(isequal(z_mat(a),y))
out1 =
1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1
|
4 | Pass |
a=[32 1 3 3;3 3 3 3;56 3 54 344;0 654 2 1];
y=[32 1 3 3 3 3 0 654 2 1];
assert(isequal(z_mat(a),y))
out1 =
32 1 3 3 3 3 0 654 2 1
|
5 | Pass |
a = [101 101;101 101];
assert(isequal(z_mat(a),a(:)'))
out1 =
101 101 101 101
|
Calculate the area of a triangle between three points
871 Solvers
525 Solvers
492 Solvers
107 Solvers
555 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!