This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
s_correct = 1;
assert(isequal(sumOfSeriesI(n),s_correct))
ans =
1
|
2 | Pass |
%%
n = 2;
s_correct = 2+2;
assert(isequal(sumOfSeriesI(n),s_correct))
ans =
4
|
3 | Pass |
%%
n = 10;
s_correct = 10+90;
assert(isequal(sumOfSeriesI(n),s_correct))
ans =
100
|
4 | Pass |
%%
n = 15;
s_correct = 15+210;
assert(isequal(sumOfSeriesI(n),s_correct))
ans =
225
|
552 Solvers
204 Solvers
Find the dimensions of a matrix
267 Solvers
Matlab Basics - Create a row vector
205 Solvers
Matlab Basics - y as a function of x
242 Solvers