synapse_activation_times¶
- single_cell_parser.analyze.synanalysis.synapse_activation_times(tVec, cntVec)¶
Parse the spike times from a list of spike counts and corresponding time points.
Example
>>> tVec = [0, 1, 2, 3, 4, 5] >>> cntVec = [0, 0, 0, 1, 1, 2] >>> synapse_activation_times(tVec, cntVec) [3, 5]
Documentation unclear, incomplete, broken or wrong? Let us know