Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 5;
y_correct = [ 2 4 6 8 10;
1 3 5 7 9;
1 3 5 7 9;
2 4 6 8 10];
assert(isequal(your_fcn_name(x),y_correct))
y =
1 3 5 7 9
2 4 6 8 10
y =
2 4 6 8 10
1 3 5 7 9
1 3 5 7 9
2 4 6 8 10
|
2 | Pass |
x = 7;
y_correct = [ 2 4 6 8 10 12 14;
1 3 5 7 9 11 13;
1 3 5 7 9 11 13;
2 4 6 8 10 12 14];
assert(isequal(your_fcn_name(x),y_correct))
y =
1 3 5 7 9 11 13
2 4 6 8 10 12 14
y =
2 4 6 8 10 12 14
1 3 5 7 9 11 13
1 3 5 7 9 11 13
2 4 6 8 10 12 14
|
3 | Pass |
x = 11;
y_correct = [ 2 4 6 8 10 12 14 16 18 20 22;
1 3 5 7 9 11 13 15 17 19 21;
1 3 5 7 9 11 13 15 17 19 21;
2 4 6 8 10 12 14 16 18 20 22];
assert(isequal(your_fcn_name(x),y_correct))
y =
1 3 5 7 9 11 13 15 17 19 21
2 4 6 8 10 12 14 16 18 20 22
y =
2 4 6 8 10 12 14 16 18 20 22
1 3 5 7 9 11 13 15 17 19 21
1 3 5 7 9 11 13 15 17 19 21
2 4 6 8 10 12 14 16 18 20 22
|
Unique values without using UNIQUE function
171 Solvers
122 Solvers
505 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
Write a function man that takes a row vector v and returns a matrix H as follows..
439 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!