fma(seewave)
fma()所属R语言包:seewave
Frequency modulation analysis
频率调制分析
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function computes the Fourier analysis of the instantaneous frequency of a time wave. This allows to detect periodicity
该函数计算的瞬时频率的时间波的傅立叶分析。这允许检测周期性
用法----------Usage----------
fma(wave, f, threshold = NULL, plot = TRUE, ...)
参数----------Arguments----------
参数:wave
an R object.
R对象。
参数:f
sampling frequency of wave (in Hz). Does not need to be specified if embedded in wave.
wave(赫兹)的采样频率。不需要以指定如果嵌入在wave,。
参数:threshold
amplitude threshold for signal detection (in % ).
用于信号检测的幅度阈值(%)。
参数:plot
logical, if TRUE the spectrum of the instantaneous frequency (by default TRUE).
逻辑,如果TRUE谱的瞬时频率(默认情况下TRUE)。
参数:...
other spec parameters.
其他spec参数。
Details
详细信息----------Details----------
This function is based on ifreq and spec.<br> The instantaneous frequency of wave is first computed and the spectrum of this frequency modulation is then processed. All env and spec arguments can be set up.
此功能是基于ifreq和spec。<br>该瞬时频率wave首先计算和此频率调制的频谱,然后处理。所有的env和spec参数可以成立。
值----------Value----------
If plot is FALSE, fma returns a numeric vector corresponding to the computed spectrum. If peaks is not NULL, fma returns a list with two elements:
plot如果是FALSE,fma返回一个数字矢量计算出的频谱。如果peaks是非NULL,fma返回一个有两个元素的列表:
参数:spec
the spectrum computed
频谱计算
参数:peaks
the peaks values (in kHz).
的高峰值(单位为kHz)。
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a>
参见----------See Also----------
ifreq, hilbert, spec, ama
ifreq,hilbert,spec,ama
实例----------Examples----------
# a sound with a 1 Khz sinusoid FM[一个声音,一个1 kHz的正弦波FM]
a<-synth(d=1, f=8000, cf=1500, fm=c(1000,1000,0))
fma(a,f=8000)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|