This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
s_correct = 2;
assert(isequal(sumOfSeriesV(n),s_correct))
|
2 | Pass |
%%
n = 3;
s_correct = 20;
assert(isequal(sumOfSeriesV(n),s_correct))
|
3 | Pass |
%%
n = 4;
s_correct = 40;
assert(isequal(sumOfSeriesV(n),s_correct))
|
4 | Pass |
%%
n = 10;
s_correct = 440;
assert(isequal(sumOfSeriesV(n),s_correct))
|
5831 Solvers
965 Solvers
07 - Common functions and indexing 4
319 Solvers
177 Solvers
309 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!