mel(seewave)
mel()所属R语言包:seewave
Hertz / Mel conversion
赫兹/梅尔转换
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function converts Hertz data in Mel data.
这个函数把赫兹的在梅尔数据的数据。
用法----------Usage----------
mel(x, inverse = FALSE)
参数----------Arguments----------
参数:x
a value in Hertz (or in Mel if inverse is TRUE)
的值,单位是赫兹(或在梅尔inverse如果是TRUE)
参数:inverse
logical, if TRUE converts the Mel data in Hertz data.
逻辑,如果TRUE梅尔数据赫兹数据转换。
Details
详细信息----------Details----------
Hertz to mel conversion is computed according to:<br>
赫兹的到梅尔转换的计算依据:参考
with m in Mel and f in Hertz.
米,麦和f赫兹。
Mel to Hertz conversion (when inverse is TRUE) is therefore computed according to:<br>
梅尔·赫兹转换(当inverse是TRUE),因此计算依据:参考
with f in Hertz and m in Mel.
f在赫兹和梅尔·米。
值----------Value----------
A corresponding R object is returned.
返回相应的R对象。
注意----------Note----------
The Mel scale is a perceptual scale of pitches judged by listeners to be equal in distance from one another. The name Mel comes from the word melody to indicate that the scale is based on pitch comparisons. The reference point between this scale and normal frequency measurement is defined by equating a 1000 Hz tone, 40 dB above the listener's threshold, with a pitch of 1000 mels.
梅尔规模是一个感性的球场判断的听众在距离等于从另一个规模。的名称梅尔来自字旋律表明刻度间距上的比较为基础的。这种规模和正常的频率测量之间的参考点定义的等同1000 Hz的音调,监听器的阈值的40分贝以上,1000梅尔斯与音高。
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>
参考文献----------References----------
A scale for the measurement of psychological magnitude pitch.
实例----------Examples----------
x<-seq(0,10000,by=50)
y<-mel(x)
plot(x,y,type="l",xlab = "f (hertz)", ylab = "f (mel)",
main = "Mel scale", col="red")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|