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 6
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000
Columns 7 through 12
0.1000 1.0000 5.0000 0.1000 6.0000 3.0000
Columns 13 through 15
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 6
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000
Columns 7 through 10
0.1000 0.1000 50.0000 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 6
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000
Columns 7 through 12
0.1000 1.0000 5.0000 0.1000 6.0000 3.0000
Columns 13 through 15
2.0000 0.1000 0.1000
|
272 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
Implement simple rotation cypher
943 Solvers
Find out missing number from a vector of 9 elements
245 Solvers
289 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!