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))
ans =
Columns 1 through 10
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000 0.1000 1.0000 5.0000 0.1000
Columns 11 through 15
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))
ans =
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000 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))
ans =
Columns 1 through 10
1.0000 1.0000 2.0000 3.0000 0.1000 0.1000 0.1000 1.0000 5.0000 0.1000
Columns 11 through 15
6.0000 3.0000 2.0000 0.1000 0.1000
|
1166 Solvers
298 Solvers
14984 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
381 Solvers
194 Solvers