segment.dwells_by_conductance {scbursts}R Documentation

Extract dwells in conductance range. lower <= x <= upper

Description

Extract dwells in conductance range. lower <= x <= upper

Usage

segment.dwells_by_conductance(segment, level)

Arguments

segment

the segment object

level

The conductance to extract

Value

the dwells in a given range

Examples


# It's more likely that you created states or dwells with some function
states  <-  c(0,    0.2,    0,    1,    0,  0.5,    0,  0.7,    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")

half_open <- segment.dwells_by_conductance(my_burst, 0.5)
head(half_open)


[Package scbursts version 1.6 Index]