Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = [1 3 5];
assert(isequal(n_odd_numbers(n),y_correct))
a =
[]
y =
1 3 5
|
2 | Pass |
n = 1;
y_correct = [1];
assert(isequal(n_odd_numbers(n),y_correct))
a =
[]
y =
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))
a =
[]
y =
1 3 5 7 9 11 13 15 17 19
|
2197 Solvers
519 Solvers
279 Solvers
Create a vector of the first n natural numbers (★)
67 Solvers
54 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!