divide {FastUtils}R 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))

[Package FastUtils version 0.1.1 Index]