risetime.correct_gaussian: Undo the effect of the gaussian filter.

Description Usage Arguments Value Examples

Description

Undo the effect of the gaussian filter. See section 4.1.1 of Colquhoun and Sigworth, "Fitting and Analysis of Single-Channel segments". NOTE: This is potentially problematic, in that this unfiltering lengthens every dwell. A less naive algorithm would take into account the infulence of the surroundings, as they impact the effects of the filter.

Usage

1

Arguments

Tr

Rise time of the filter in (us)

segments

A segment or multiple segments with $states and $dwells to correct.

units

What unit the risetime is input in (defaults to seconds)

Value

A Segment or multiple segments with corrected risetimes.

Examples

1
2
3
4
5
infile <- system.file("extdata", "example1_tac.evt", package = "scbursts")
transitions <- evt.read(infile)
dwells <- evt.to_dwells(transitions)

dwells_c <- risetime.correct_gaussian(Tr=35.0052278, dwells, units="us")

scbursts documentation built on July 6, 2019, 5:02 p.m.