perturbation | R Documentation |
Perturbation of two compositions.
perturbation(x, y, ...)
## S4 method for signature 'numeric,numeric'
perturbation(x, y)
## S4 method for signature 'CompositionMatrix,numeric'
perturbation(x, y)
## S4 method for signature 'CompositionMatrix,matrix'
perturbation(x, y)
x , y |
A |
... |
Currently not used. |
In compositional geometry, perturbation plays the role of sum (translation). It is the closed component-wise product of two compositions.
A numeric
vector.
N. Frerebeau
Other operations in the simplex:
arithmetic
,
closure()
,
powering()
,
scalar()
x <- as_composition(c(1, 2, 3))
y <- as_composition(c(1, 2, 1))
## Perturbation
perturbation(x, y)
x + y
## Powering
powering(y, 2)
y * 2
## Scalar product
scalar(x, y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.