diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -43,8 +43,12 @@ results = detect_from_wfm( name="data.Wfm.bin", sampling_interval=5e-7, # seconds data_path="/path/to/data/", + target_sampling_interval=5e-6, # Optional: downsample to 200 kHz detection_snr=3.0, ) +``` + +**New in v2.1.0**: Use `target_sampling_interval` to downsample oversampled data before detection. This improves SNR and processing speed for high-frequency data. events = results["events"] print(f"Found {len(events)} events") |
