Last data update: 2014.03.03

R: Operators for rational functions
Ops.rationalfunR Documentation

Operators for rational functions

Description

Basic arithmetic operators for rational functions.

Usage

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

Arguments

e1

an object of class "rationalfun"

e2

for "^", a positive integer; in other cases, an object of class "rationalfun"

Value

A new object of "rationalfun" class.

Examples

r1 <- rationalfun(c(1, 2), c(1, 2, 1))
r2 <- rationalfun(c(1, 1), c(1, -2, 1))
r1 + r2
r1 * r2
r1^2

Results