Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1:4];
y_correct = [1 0 0 0; 0 2 0 0; 0 0 3 0; 0 0 0 4];
assert(isequal(diag_array(x),y_correct))
y =
1 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
y =
1 0 0 0
0 2 0 0
0 0 0 0
0 0 0 0
y =
1 0 0 0
0 2 0 0
0 0 3 0
0 0 0 0
y =
1 0 0 0
0 2 0 0
0 0 3 0
0 0 0 4
|
2 | Pass |
x = [100 23 3.14 12 200];
y_correct = [100.0000 0 0 0 0;
0 23.0000 0 0 0;
0 0 3.1400 0 0;
0 0 0 12.0000 0;
0 0 0 0 200.0000]
assert(isequal(diag_array(x),y_correct))
y_correct =
100.0000 0 0 0 0
0 23.0000 0 0 0
0 0 3.1400 0 0
0 0 0 12.0000 0
0 0 0 0 200.0000
y =
100 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
y =
100 0 0 0 0
0 23 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
y =
100.0000 0 0 0 0
0 23.0000 0 0 0
0 0 3.1400 0 0
0 0 0 0 0
0 0 0 0 0
y =
100.0000 0 0 0 0
0 23.0000 0 0 0
0 0 3.1400 0 0
0 0 0 12.0000 0
0 0 0 0 0
y =
100.0000 0 0 0 0
0 23.0000 0 0 0
0 0 3.1400 0 0
0 0 0 12.0000 0
0 0 0 0 200.0000
|
798 Solvers
Replace NaNs with the number that appears to its left in the row.
1712 Solvers
232 Solvers
convert matrix to single column
217 Solvers
379 Solvers