octaves(seewave)
octaves()所属R语言包:seewave
Octave values
八度值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This functions returns the frequency values of the octaves
这个函数返回的八度音的频率值
用法----------Usage----------
octaves(x, below = 3, above = 3)
参数----------Arguments----------
参数:x
a numeric vector, frequency of the note in Hz or Khz.
一个数值向量,频率Hz或kHz中的注意事项。
参数:below
the number of octaves below x.
数八度x。
参数:above
the number of octaves above x.
数八度以上x。
值----------Value----------
A numeric vector with the octave series in frequency (Hz or kHz
一个数值向量与精明债券系列的频率(Hz或kHz
(作者)----------Author(s)----------
Jerome Sueur
参见----------See Also----------
notefreq
notefreq
实例----------Examples----------
names <- c("C","D","E","F","G","A","B")
values <- c(261.63, 293.66, 329.64, 349.23, 392, 440, 493.88)
res <- sapply(values, FUN=octaves)/1000
op <- par(las=1,mfrow=c(2,1))
par(mar=c(0,4,1,1))
matplot(x=1:7, y=res, t="o", pch=names, xlab="",
ylab="Frequency (kHz) [linear scale]", col=rainbow(7), xaxt="n")
par(mar=c(4.5,4,0,1))
matplot(x=1:7, y=res, t="o", pch=names, xlab="Octave",
ylab="Frequency (kHz) [log scale]", col=rainbow(7), ylog=TRUE, log="y")
par(op)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|