Ops.units {units}R Documentation

S3 Ops Group Generic Functions for units objects

Description

Ops functions for units objects, including comparison, product and divide, add, subtract

Usage

## S3 method for class 'units'
Ops(e1, e2)

Arguments

e1

object of class units, or something that can be coerced to it by as.units(e1)

e2

object of class units, or something that can be coerced to it by as.units(e2), or in case of power a number (integer n or 1/n)

Value

object of class units

Examples

a <- set_units(1:3, m/s)
b <- set_units(1:3, m/s)
a + b
a * b
a / b
a <- make_unit("kg m-3") # not understood by R as a division, but understood by udunits2
b <- set_units(1, kg/m/m/m)
a + b

[Package units version 0.4-5 Index]