R/bark2hz.R

Defines functions bark2hz

Documented in bark2hz

# This code is based on the Matlab implementations of PLP and Rasta
# feature calculations by Daniel P. W. Ellis of Columbia University /
# International Computer Science Institute.  For more details, see:
# http://www.ee.columbia.edu/~dpwe/resources/matlab/rastamat/

bark2hz <- function(z){
    
    if(!is.numeric(z) || any(z < 0))
      stop("frequencies have to be non-negative")

    # Hynek's formula (taken from rasta/audspec.c)
    600 * sinh(z/6)
}

Try the tuneR package in your browser

Any scripts or data that you put into this service are public.

tuneR documentation built on Nov. 27, 2023, 5:11 p.m.