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
Hi !
The function rms_stdev appears many times in the es.py.
rms_stdev
I guess the meaning of this function is to calculate the root mean square (rms) of std (sigma).
Therefore, this function should first calculate the mean and then the square, i.e. np.sqrt(np.mean(sigma*sigma)).
np.sqrt(np.mean(sigma*sigma))
But the implementation is just the opposite in es.py.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi !
The function
rms_stdev
appears many times in the es.py.I guess the meaning of this function is to calculate the root mean square (rms) of std (sigma).
Therefore, this function should first calculate the mean and then the square, i.e.
np.sqrt(np.mean(sigma*sigma))
.But the implementation is just the opposite in es.py.
The text was updated successfully, but these errors were encountered: