Skip to contents

This function multiplies two numbers.

Usage

multiply(x, y)

Arguments

x

A numeric vector.

y

A numeric vector.

Value

A numeric vector representing the product of the input vectors.

Examples

# Multiply two numeric vectors
multiply(c(2, 3, 4), c(5, 6, 7))
#> [1] 10 18 28