Description Usage Arguments Value
These binary operators perform arithmetic on numeric ff vectors.
Arith family:
Arith: "+", "-", "*", "/", "^", "%%", "%/%"
The operators require either x
or y
to be an ff_vector
or both. In case either x
or y
is not an ff_vector
,
the other object needs to be of length 1. Recycling is not implemented.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ## S3 method for class 'ff_vector'
x + y
## S3 method for class 'ff_vector'
x - y
## S3 method for class 'ff_vector'
x * y
## S3 method for class 'ff_vector'
x / y
## S3 method for class 'ff_vector'
x ^ y
## S3 method for class 'ff_vector'
x %% y
## S3 method for class 'ff_vector'
x %/% y
|
x |
either a numeric |
y |
either a numeric |
an ff_vector
. For the definition of the operators see the base package of R.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.