seq_len_cpp.Rd
Creates a vector containing a sequence of values starting at the initial point and going to the terminal point.
seq_len_cpp(length_out)
An long unsigned int that denotes the number of points to use.
long unsigned int
A vector of length length_out that contains integer values in [0,lengthout−1].
vector
length_out
seq
James J Balamuta
# Call with the following data: seq_len_cpp(2) #> [,1] #> [1,] 0 #> [2,] 1 seq_len_cpp(4) #> [,1] #> [1,] 0 #> [2,] 1 #> [3,] 2 #> [4,] 3