Nikolay Donets
Nikolay Donets
Hey, thank you for the PR. Please refer to the issue #1 . The same topic was discussed there. In summary, there is a difference in calculation of sample entropy...
You are right about the last value. But my point was about the output type returned, in one case its an array, in another its a single value. I think...
There might be differences in calculation between wiki and implementation here. I've provided implementation details in comments together with references. Please check them
This error is related to division by 0. Most probably it is because of the input: at some scale this operation appears and that's why there are nans/inf in the...
Seems to be fixed with #28 ```python ts = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8] se1 = ent.sample_entropy(ts, 3, 0.2) # situation1: m+1=3, tolerance=0.2 se2 = ent.sample_entropy(ts, 3,...
I believe this one is resolved with #648?
Out of curiosity, according to GDPR, is it personal data? Should be optional maybe?
I believe the differences in Sample Entropy values are due to variations in how each library implements the algorithm. You might want to check if the parameters you're passing are...