powered by
Converts TCATA data from a set of onset-offset times to an indicator vector (0s and 1s). Also works for TDS data.
0
1
convert.tcata(X, times, decimal.places = 2)
out.vec indictor vector(0s and 1s)
matrix with onset (start) times in first column and offset (stop) times in second column
time slices for output indicator vector
decimal places used in times; used for naming of the indices of out.vec
times
out.vec
X <- rbind(c(3.18, 6.83), c(8.46, 11.09), c(18.61, 21.80)) times <- seq(0, 25, by = 0.01) Xnew <- convert.tcata(X, times) Xnew
Run the code above in your browser using DataLab