get_segs.Rd
get_segs
divides a bullet signature/profile (a numeric vector) into consecutive,
non-overlapping, basis segments of the same desired length. If the profile
starts or ends with a sequence of NA
(missing values), the NA
s will be trimmed.
If the very last segment does not have the desired length, it will be dropped.
get_segs(x, len = 50)
a numeric vector, vector of the bullet signature/profile
integer: the desired length of a basis segment
list with basis segments and their corresponding indices in the profile
data("bullets")
land2_3 <- bullets$sigs[bullets$bulletland == "2-3"][[1]]
x <- land2_3$sig
segments <- get_segs(x, len = 50)