Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [2 6 -3
7 12 0
-12 5 1];
y_correct = [12 7 1
6 2 0
5 -3 -12];
assert(isequal(doubleSort(x),y_correct))
|
2 | Pass |
x = randi(10,5,8);
assert(isequal(size(doubleSort(x)),size(x)))
|
3 | Pass |
x=magic(6);
y_correct = ...
[ 36 35 34 27 26 25
33 32 31 24 23 22
30 29 28 21 20 19
18 17 16 9 8 7
15 14 13 6 5 4
12 11 10 3 2 1];
assert(isequal(doubleSort(x),y_correct))
|
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
Find the largest value in the 3D matrix
1056 Solvers
find the roots of a quadratic equation
168 Solvers
2775 Solvers
Create sequnce 1 4 9 16 25.........
190 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!