Element-wise combination of two vectors
combine_vectors(x, y)
x
(vector) first vector to combine.
vector
y
(vector) second vector to combine.
A list where each element combines corresponding elements of x and y.
list
combine_vectors(1:3, 4:6)