This solution is outdated. To rescore this solution, sign in.
the second and third tests in the test suite are using an undefined function roundn. This is causing those test cases to crash, please fix this problem. You can either remove the use of roundn, or provide the test case with the functions code.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=1;d=1;n=1;
y_correct = 1;
assert(isequal(harmonicSum(a,d,n),y_correct));
|
2 | Fail |
a=2;d=2;n=5;
y_correct = roundn(3.5746,-4);
assert(isequal(roundn(harmonicSum(a,d,n),-4),y_correct));
|
3 | Fail |
a=4;d=5;n=2;
y_correct = roundn(4.6667,-4);
assert(isequal(roundn(harmonicSum(a,d,n),-4),y_correct));
|
4106 Solvers
1261 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
We love vectorized solutions. Problem 1 : remove the row average.
546 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!