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))
|
Sum all integers from 1 to 2^n
8421 Solvers
516 Solvers
Magic is simple (for beginners)
2757 Solvers
177 Solvers
Element by element multiplication of two vectors
269 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!