Description Usage Arguments Value Examples
Extract vector of gaps from the bursts. This is done using the start_time attribute, which is mostly hidden in the data. (The gaps at the ends may have length 0)
1 | bursts.get_gaps(bursts)
|
bursts |
The list of segments |
A vector of N+1 gaps for N bursts times
1 2 3 4 5 6 7 8 9 | 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")
bursts <- bursts.defined_by_tcrit(dwells_c, 100, units="ms")
gaps <- bursts.get_gaps(bursts)
head(gaps)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.