allantools icon indicating copy to clipboard operation
allantools copied to clipboard

Allan deviation and related time & frequency statistics library in Python

Results 24 allantools issues
Sort by recently updated
recently updated
newest added

How do I set the parameters if I want to enter satellite atomic clock data at 5 minute intervals. For example this function: (adev_taus,adev_devs,adev_errs,ns) = allan.adev(phase, rate=rate, taus=my_taus) I try...

Hello, I would suggest to replace: ``` f_fi, psd_fi = noise.numpy_psd(signal.detrend(fi[:len(fi)/20]), fs) f_x, psd_x = noise.numpy_psd(x[:len(x)/20], fs) ``` to: ``` #f_fi, psd_fi = noise.numpy_psd(signal.detrend(fi[:int(len(fi)/20)]), fs) #f_x, psd_x = noise.numpy_psd(x[:int(len(x)/20)], fs)...

Hi, I'd like to suggest a small change in the `calc_adev_phase` function: The line `s = np.sum(v_arr * v_arr)` should be replaced by `s = np.sum(abs(v_arr)**2)` This will make the...

Hello, when using matplotib 3.4.2, I am getting the warning: UserWarning: First parameter to grid() is false, but line properties are supplied. The grid will be enabled. It is caused...

This is a list of to-do features/issues that will not make it into 2019.07 Algorithms: - [ ] make lag-1 autocorrelation the default noise-ID algorithm and compute confidence intervals (#47)...

the travis log gives some clues on what is wrong with the windows build `The command "python -m pip install -v ." failed and exited with 1 during .` `...

Docs render as: ![image](https://user-images.githubusercontent.com/909509/120234240-3cf0e000-c260-11eb-8b65-52235d0fbc7a.png) doesn't look right... @EBenkler ?

link "full list of available functions" at https://pypi.org/project/AllanTools/ is broken.

What exactly is meant by "frequency data input" in the README statement? > Note that allantools assumes non-dimensional frequency data input. Normalization, by e.g. dividing all data points with the...