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))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13051 Solvers
3971 Solvers
Back to basics 13 - Input variables
233 Solvers
Compute a dot product of two vectors x and y
750 Solvers
2335 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!