divide {FastUtils} | R Documentation |
This function divides one number by another.
divide(x, y)
x |
A numeric vector. |
y |
A numeric vector. |
A numeric vector representing the quotient of the input vectors.
# Divide two numeric vectors
divide(c(10, 20, 30), c(2, 4, 5))