Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v = [14.38 80.42 3.14 268 -14.38 210 1 80.44];
w_correct = [1 -14.38 14.38 210 268 3.14 80.42 80.44];
assert(isequal(soort(v),w_correct))
|
2 | Pass |
v = [-246 -24680 2468 246 24 -2 24680 -24 -2468 2];
w_correct = [-2 2 -24 24 -246 246 -2468 2468 -24680 24680];
assert(isequal(soort(v),w_correct))
|
3 | Pass |
v = ones(1,100)*randi(100);
w_correct = v;
assert(isequal(soort(v),w_correct))
|
4 | Pass |
v = [-0.22222 0.22 0.222 0.2 0.2222];
w_correct = [0.2 0.22 0.222 0.2222 -0.22222];
assert(isequal(soort(v),w_correct))
|
5 | Pass |
v = [];
w_correct = [];
assert(isequal(soort(v),w_correct))
|
Convert a numerical matrix into a cell array of strings
455 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
547 Solvers
Test if two numbers have the same digits
187 Solvers
find the maximum element of the matrix
348 Solvers
465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!