Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [ 2 3
3 4
3 4];
y_correct = [2;3;3;3;4;4];
assert(isequal(rearrange(x),y_correct))
|
2 | Pass |
x = [ 4 3
5 1
5 1];
y_correct = [4;5;5;3;1;1];
assert(isequal(rearrange(x),y_correct))
|
Select every other element of a vector
20334 Solvers
Find the numeric mean of the prime numbers in a matrix.
6781 Solvers
Project Euler: Problem 7, Nth prime
521 Solvers
259 Solvers
Calculate square and cube of number
248 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!