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))
|
1611 Solvers
Project Euler: Problem 1, Multiples of 3 and 5
1064 Solvers
Solve the set of simultaneous linear equations
175 Solvers
Generate a random matrix A of (1,-1)
162 Solvers
264 Solvers