??? What is this man???
Really???
He probably noticed that you had already set x to the correct answer in your test suite. All he (or anybody else) has to do is pass it back to you. Try removing the FOR loop from your test (and add some more tests while you're in there!).
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
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))
Error: Assertion failed.
|
2 | Fail |
%%
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))
Error: Assertion failed.
|
3 | Fail |
%%
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))
Error: Assertion failed.
|
First non-zero element in each column
464 Solvers
Given a 4x4 matrix, swap the two middle columns
299 Solvers
What is Sum Of all elements of Matrix
215 Solvers
215 Solvers
171 Solvers