Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
% trivial
x = 1;
y_correct = 1;
assert(isequal(mshuffle(x),y_correct))
|
2 | Pass |
x = 1:5;
y_correct = [4 2 1 3 5];
assert(isequal(mshuffle(x),y_correct))
|
3 | Pass |
a = magic(5);
a=a(:)';
y_correct = [3 16 2 20 8 19 7 18 6 24 10 23 17 4 11 5 12 1 13 25 14 21 15 22 9];
assert(isequal(mshuffle(a),y_correct));
|
4 | Pass |
x = 7:-1:1;
y_correct = [2 4 6 7 5 3 1];
assert(isequal(mshuffle(x),y_correct))
|
Find the alphabetic word product
2322 Solvers
313 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
Duplicate each element of a vector.
518 Solvers
311 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!