Convert Mel Scale to Frequency
ucnv_mel_to_hz.RdConverts values from the mel scale to frequency in Hz.
This is the inverse of ucnv_hz_to_mel.
Usage
ucnv_mel_to_hz(mel, method = c("htk", "slaney"), 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
mel <- ucnv_hz_to_mel(1000)
ucnv_mel_to_hz(mel) # Should return ~1000
} # }