Convert ERB-rate Scale to Frequency
ucnv_erb_to_hz.RdConverts values from the ERB-rate scale to frequency in Hz.
This is the inverse of ucnv_hz_to_erb.
Usage
ucnv_erb_to_hz(erb, method = c("glasberg1990", "moore1983"), as_units = NULL)Value
If as_units = TRUE: a units object with "Hz" units.
Otherwise, a numeric vector of frequencies in Hz.
Examples
if (FALSE) { # \dontrun{
# Round trip
erb <- ucnv_hz_to_erb(1000)
ucnv_erb_to_hz(erb) # Should return ~1000
} # }