Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 3;
y_correct = [1 3 5];
assert(isequal(n_odd_numbers(n),y_correct))
y =
1 3 5
|
2 | Pass |
n = 1;
y_correct = [1];
assert(isequal(n_odd_numbers(n),y_correct))
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))
y =
1 3 5 7 9 11 13 15 17 19
|
Sum the numbers on the main diagonal
453 Solvers
465 Solvers
Height of a right-angled triangle
448 Solvers
Find the Oldest Person in a Room
5129 Solvers
1832 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!