Creates a vector containing a sequence of values starting at the initial point and going to the terminal point.
Arguments
- a
A long int
that denotes the starting point.
- b
A long int
that denotes the ending point.
Value
A vector
containing integer values from
Examples
# Call with the following data:
seq_int(3, 5)
#> [,1]
#> [1,] 3
#> [2,] 4
#> [3,] 5
seq_int(5, 3)
#> [,1]
#> [1,] 5
#> [2,] 4
#> [3,] 3