Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
a = magic(4);
y=[16 2 3 13 10 7 4 14 15 1];
assert(isequal(z_mat(a),y))
|
2 | Fail |
a = ones(77);
y=ones(1,229);
assert(isequal(z_mat(a),y))
|
3 | Fail |
a = eye(7);
y=[1,zeros(1,8),1,zeros(1,8),1];
assert(isequal(z_mat(a),y))
|
4 | Fail |
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))
|
5 | Fail |
a = [101 101;101 101];
assert(isequal(z_mat(a),a(:)'))
|
Select every other element of a vector
20357 Solvers
282 Solvers
191 Solvers
323 Solvers
1174 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!