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))
|
2 | Pass |
m = 1;
n = 1;
y_correct = 1;
assert(isequal(Table(m,n),y_correct))
|
3 | Pass |
m = 3;
n = 1;
y_correct = [1 2 3];
assert(isequal(Table(m,n),y_correct))
|
1421 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
187 Solvers
216 Solvers
555 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!