R/math.R
multiply.Rd
This function multiplies two numbers.
multiply(x, y)
A numeric vector.
A numeric vector representing the product of the input vectors.
# Multiply two numeric vectors multiply(c(2, 3, 4), c(5, 6, 7)) #> [1] 10 18 28