Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 3 6 9 11];
y_correct = [1 3 6 9 11; 0 3 6 9 11; 0 0 6 9 11; 0 0 0 9 11; 0 0 0 0 11]
assert(isequal(upMat(x),y_correct))
y_correct =
1 3 6 9 11
0 3 6 9 11
0 0 6 9 11
0 0 0 9 11
0 0 0 0 11
ans =
1 3 6 9 11
0 3 6 9 11
0 0 6 9 11
0 0 0 9 11
0 0 0 0 11
|
2 | Pass |
x = [1 2 3 4 5];
y_correct = [1 2 3 4 5; 0 2 3 4 5; 0 0 3 4 5; 0 0 0 4 5; 0 0 0 0 5]
assert(isequal(upMat(x),y_correct))
y_correct =
1 2 3 4 5
0 2 3 4 5
0 0 3 4 5
0 0 0 4 5
0 0 0 0 5
ans =
1 2 3 4 5
0 2 3 4 5
0 0 3 4 5
0 0 0 4 5
0 0 0 0 5
|
3 | Pass |
x = [10 9 8];
y_correct = [10 9 8; 0 9 8; 0 0 8]
assert(isequal(upMat(x),y_correct))
y_correct =
10 9 8
0 9 8
0 0 8
ans =
10 9 8
0 9 8
0 0 8
|
282 Solvers
320 Solvers
Cumulative product of a vector
210 Solvers
171 Solvers
Create vector as shown in test cases
203 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!