We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eFEL/efel/cppcore/LibV1.cpp
Line 1070 in 49a3bab
Here in this loop
double average = 0.; for (size_t i = 1; i < isivalues.size(); i++) { average += isivalues[i]; }
The loop here is ignoring the first ISI. The function returning the ISIs however is LibV1::ISI_values and that is already ignoring the first ISI.
LibV1::ISI_values
Line 86 in 49a3bab
As a result first 2 ISIs are removed from the computation.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
eFEL/efel/cppcore/LibV1.cpp
Line 1070 in 49a3bab
Here in this loop
The loop here is ignoring the first ISI. The function returning the ISIs however is
LibV1::ISI_values
and that is already ignoring the first ISI.eFEL/efel/cppcore/LibV1.cpp
Line 86 in 49a3bab
As a result first 2 ISIs are removed from the computation.
The text was updated successfully, but these errors were encountered: