segment.count_closed {scbursts} | R Documentation |
Extract number of closed dwells. In the case of subconductive states, a dwell is only closed if the conductance is exactly zero.
Description
Extract number of closed dwells. In the case of subconductive states, a dwell is only closed if the conductance is exactly zero.
Usage
segment.count_closed(segment)
Arguments
segment |
the segment object |
Value
number of closed dwells
Examples
# It's more likely that you created states or dwells with some function
states <- c(0, 1, 0, 1, 0, 1, 0, 1, 0, 1)
dwells <- c(0.1, 1.1, 0.5, 0.2, 1.0, 1.1, 0.6, 1.1, 0.8, 1.1)
my_burst <- segment.create(states, dwells, seg=1, start_time=3.14159, name="example_segment")
segment.count_closed(my_burst)
[Package scbursts version 1.6 Index]