Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 1 2 3 0 -9 -90 1 5 -7 6 3 2 -2 -99];
y_correct = [1 1 2 3 0.1 0.1 0.1 1 5 0.1 6 3 2 0.1 0.1];
assert(isequal(repL0W01(x),y_correct))
x =
Columns 1 through 9
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000 0.1000 1.0000 5.0000
Columns 10 through 15
0.1000 6.0000 3.0000 2.0000 0.1000 0.1000
|
2 | Pass |
x = [1 1 2 3 0 -0.1 -1 -0.001 50 -80];
y_correct = [1 1 2 3 0.1 0.1 0.1 0.1 50 0.1];
assert(isequal(repL0W01(x),y_correct))
x =
Columns 1 through 9
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000 0.1000 0.1000 50.0000
Column 10
0.1000
|
3 | Pass |
x = [1 1 2 3 0 -9 -90 1 5 -7 6 3 2 -2 -99];
y_correct = [1 1 2 3 0.1 0.1 0.1 1 5 0.1 6 3 2 0.1 0.1];
assert(isequal(repL0W01(x),y_correct))
x =
Columns 1 through 9
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000 0.1000 1.0000 5.0000
Columns 10 through 15
0.1000 6.0000 3.0000 2.0000 0.1000 0.1000
|
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
find the maximum element of the matrix
349 Solvers
convert matrix to single column
307 Solvers
327 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!