Skip to content

Commit

Permalink
Update sdtfile/sdt2dat.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cgohlke committed Nov 18, 2021
1 parent edf974b commit 5325ea6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sdtfile/sdt2dat.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@
:License: BSD 3-Clause
:Version: 2021.3.21
:Version: 2021.11.18
For command line usage run ``python -m sdtfile.sdt2dat --help``
For example, to analyze the decay curve in `file.sdt` using a reference decay
in `reference.sdt` with lifetime 4.0 ns, after subtreacting a background of
in `reference.sdt` with lifetime 4.0 ns, after subtracting a background of
100 and extracting data in range 500 to 3900:
``sdt2dat -r reference.sdt -l 4.0 -b 100 -s 500 3900 file.sdt``
The decay curves will be saved to `file.sdt.dat`. Phasor coordinates will be
saved to `sdtphasor.tsv`.
The decay curves are saved to `file.sdt.dat`. Phasor coordinates are saved
to `sdtphasor.tsv`.
This script depends on Python >= 3.7 and the matplotlib, numpy, and click
libraries, which can be installed with:
Expand All @@ -64,7 +64,7 @@
"""

__version__ = '2021.3.21'
__version__ = '2021.11.18'

import os
import sys
Expand Down

0 comments on commit 5325ea6

Please sign in to comment.