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))
|
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))
|
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))
|
Back to basics 23 - Triangular matrix
532 Solvers
Return the first and last character of a string
1662 Solvers
Generate a random matrix A of (1,-1)
162 Solvers
Number of digits in an integer
271 Solvers
250 Solvers