rms {seewave} | R Documentation |
This function computes the root mean square or quadratic mean.
rms(x, ...)
x |
an R object |
... |
further arguments passed to mean |
The Root Mean Square or quadratic mean is computed according to:
RMS = sqrt(mean(x^2))
A numeric vector of length 1
Jerome Sueur sueur@mnhn.fr
# simple rms rms(1:10) # rms of a normalized envelope data(sheep) env <- env(sheep, f=8000) rms(env)