Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
pravirkr committed Oct 27, 2023
1 parent b59b15a commit 0d11ef0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Python Implementation of the Kalman filter detector for detecting smoothly variying signals buried in gaussian noise (like Fast Radio Bursts).

The detection statistic is designed to receive X(f), a sequence of observed "amplitudes" (where f is an arbitrary indexed parameter) and decide between:
The detection statistic is designed to receive I(f), a sequence of observed "amplitudes" (where f is an arbitrary indexed parameter) and decide between:

```
H0: I(f) = N(f) Pure gaussian noise
Expand All @@ -31,6 +31,13 @@ kalman = KalmanDetector(spectrum_std)
kalman.prepare_fits(ntrials=10000)
kalman.get_significance(spectrum)
```

### Efficiency

```python
python -m kalman_detector.efficiency
```

## Citation
Please cite [Kumar, Zackay & Law (2023)](https://ui.adsabs.harvard.edu/abs/2023arXiv230607914K) if you find this code useful in your research.
The BibTeX entry for the paper is:
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = kalman_detector
version = 0.1.0
version = 0.5.0
author = "Pravir Kumar, Barak Zackay"
author_email = pravirka@gmail.com
description = Detecting Fast Radio Bursts with Spectral Structures
Expand Down Expand Up @@ -28,6 +28,7 @@ install_requires =
matplotlib
numba
sympy
uncertainties

[options.extras_require]
tests =
Expand Down

0 comments on commit 0d11ef0

Please sign in to comment.