Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
t-b committed Dec 18, 2024
1 parent 0b05e3b commit cd1ca3c
Showing 1 changed file with 13 additions and 8 deletions.
21 changes: 13 additions & 8 deletions Packages/doc/SweepFormula.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1368,9 +1368,10 @@ numberOfSDs
psxRiseTime
"""""""""""
The `psxRiseTime` operation is a helper operation for `psx` to manage the lower and upper thresholds for the rise time calculation.
The `psxRiseTime` operation is a helper operation for `psx` to manage the lower and upper thresholds for the rise time calculation
and the differential threshold for the onset time calculcation.
psxRiseTime([lowerThreshold, upperThreshold])
psxRiseTime([lowerThreshold, upperThreshold, diffThreshold])
The function accepts zero to two arguments.
Expand All @@ -1380,15 +1381,20 @@ lowerThreshold
upperThreshold
defaults to 80%
diffThreshold
defaults to 5%
.. code-block:: bash
psxRiseTime(0.5)
psxRiseTime(0.5, 0.9)
psxRiseTime(0.5, 0.9, 0.15)
psxDeconvFilter
"""""""""""""""
The `psxDeconvFilter` operation is a helper operation for `psx` to manage the deconvolution filter settings.
This filter is a bandpass filter.
psxDeconvFilter([lowFreq, highFreq, order])
Expand All @@ -1404,15 +1410,14 @@ order
defaults to `NaN`
The default values of `NaN` are replaced inside `psx`. For the order this is
`101`, for the frequencies this is a normalized frequency which depends on the
sampling interval of the data. Here `lowFreq` is the end of the passband and
`highFreq` the start of the reject band see also the description of `/LO` from
`FilterFIR`.
`7`, for the frequencies 500 (`lowFreq`) and 50 (`highFreq`).
Here `lowFreq` is the end of the passband and `highFreq` the start of the
passband band, see also the description of `/LO` and `/HI` from `FilterIIR`.
.. code-block:: bash
psxDeconvFilter(500, 1000)
psxDeconvFilter(400, 600, 91)
psxDeconvFilter(800, 100)
psxDeconvFilter(400, 50, 11)
psxstats
""""""""
Expand Down

0 comments on commit cd1ca3c

Please sign in to comment.