Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
nterms = 10;
term0 = randi(10)
ratio = (-1)^randi(2)*randi(10)
correctsequence = term0*ratio.^(0:nterms-1);
for position = 1:nterms
errorsequence = correctsequence;
errorsequence(position) = errorsequence(position) + (-1)^randi(2)*randi(50);
[errorposition, truesequence] = find_error(errorsequence);
assert(errorposition == position && isequal(truesequence, correctsequence), 'failed test 1 at position %d', position);
end
term0 =
7
ratio =
-5
|
2 | Pass |
nterms = 15;
term0 = randi(10)
ratio = (-1)^randi(2)*randi(10)
correctsequence = term0*ratio.^(0:nterms-1);
for position = 1:nterms
errorsequence = correctsequence;
errorsequence(position) = errorsequence(position) + (-1)^randi(2)*randi(50);
[errorposition, truesequence] = find_error(errorsequence);
assert(errorposition == position && isequal(truesequence, correctsequence), 'failed test 2 at position %d', position);
end
term0 =
6
ratio =
-7
|
The Hitchhiker's Guide to MATLAB
2874 Solvers
Set the array elements whose value is 13 to 0
935 Solvers
401 Solvers
Create an n-by-n null matrix and fill with ones certain positions
269 Solvers
519 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!