Learn R Programming

seewave (version 1.5.5)

rms: Root Mean Square

Description

This function computes the root mean square or quadratic mean.

Usage

rms(x, ...)

Arguments

x
an R object
...
further arguments passed to mean

Value

  • A vector

Details

The Root Mean Square or quadratic mean is cimputed according to: $$RMS = \sqrt{\frac{1}{n} \times \sum_{i=1}^{N} x{_i}{^2}}$$

See Also

mean

Examples

Run this code
# simple rms
rms(1:10)
# rms of a normalized envelope
data(sheep)
env <- env(sheep, f=8000)
rms(env)

Run the code above in your browser using DataLab