Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = [1 3 5];
assert(isequal(n_odd_numbers(n),y_correct))
ans =
1 3 5
|
2 | Pass |
n = 1;
y_correct = [1];
assert(isequal(n_odd_numbers(n),y_correct))
ans =
1
|
3 | Pass |
n = 10;
y_correct = [1 3 5 7 9 11 13 15 17 19];
assert(isequal(n_odd_numbers(n),y_correct))
ans =
1 3 5 7 9 11 13 15 17 19
|
4599 Solvers
2261 Solvers
Make one big string out of two smaller strings
1149 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
498 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!