This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
m = 5;
n = 4;
y_correct = [ 1 2 3 4 5; 2 4 6 8 10; 3 6 9 12 15; 4 8 12 16 20];
assert(isequal(Table(m,n),y_correct))
y =
1
y =
1 2
y =
1 2 3
y =
1 2 3 4
y =
1 2 3 4 5
y =
1 2 3 4 5
2 0 0 0 0
y =
1 2 3 4 5
2 4 0 0 0
y =
1 2 3 4 5
2 4 6 0 0
y =
1 2 3 4 5
2 4 6 8 0
y =
1 2 3 4 5
2 4 6 8 10
y =
1 2 3 4 5
2 4 6 8 10
3 0 0 0 0
y =
1 2 3 4 5
2 4 6 8 10
3 6 0 0 0
y =
1 2 3 4 5
2 4 6 8 10
3 6 9 0 0
y =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 0
y =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
y =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 0 0 0 0
y =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 0 0 0
y =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 0 0
y =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 0
y =
1 2 3 4 5
2 4 6 8 10
3 6 9 12 15
4 8 12 16 20
|
2 | Pass |
m = 1;
n = 1;
y_correct = 1;
assert(isequal(Table(m,n),y_correct))
y =
1
|
3 | Pass |
m = 3;
n = 1;
y_correct = [1 2 3];
assert(isequal(Table(m,n),y_correct))
y =
1
y =
1 2
y =
1 2 3
|
5703 Solvers
381 Solvers
Check if number exists in vector
4466 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
297 Solvers
464 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!