divide: Divide Two Numbers

View source: R/math.R

divideR Documentation

Divide Two Numbers

Description

This function divides one number by another.

Usage

divide(x, y)

Arguments

x

A numeric vector.

y

A numeric vector.

Value

A numeric vector representing the quotient of the input vectors.

Examples

# Divide two numeric vectors
divide(c(10, 20, 30), c(2, 4, 5))

FastUtils documentation built on Sept. 11, 2024, 5:13 p.m.