coh(seewave)
coh()所属R语言包:seewave
Coherence between two time waves
两个时间波之间的一致性
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function returns the frequency coherence between two time
这个函数返回的频率两个时间之间的一致性
用法----------Usage----------
coh(wave1, wave2, f, plot =TRUE, xlab = "Frequency (kHz)",
ylab = "Coherence", xlim = c(0,f/2000), type = "l",...)
参数----------Arguments----------
参数:wave1
a first R object.
第一个R对象。
参数:wave2
a second R object.
第二个R对象。
参数:f
sampling frequency of wave (in Hz). Does not need to be specified if embedded in wave.
wave(赫兹)的采样频率。不需要以指定如果嵌入在wave,。
参数:plot
logical, if TRUE plots the continuous coherence function (by default TRUE).
逻辑,如果TRUE图连续相干函数(默认情况下TRUE)。
参数:xlab
title of the frequency X-axis.
标题的频率X-轴。
参数:ylab
title of the coherence Y-axis.
标题的一致性Y-轴。
参数:xlim
range of frequency X-axis.
的频率范围内的X-轴。
参数:type
if plot is TRUE, type of plot that should be drawn. See plot for details (by default "l" for lines).
如果plot是TRUE,应该得出的图。见plot的详细信息(默认情况下,“L”线)。
参数:...
other plot graphical parameters.
其他plot图形参数。
Details
详细信息----------Details----------
Coherence is a frequency domain function computed to show the degree of a relationship between two signals. The value of the coherence function ranges between zero and one, where a value of zero indicates there is no causal relationship between the signals. A value of one indicates the existence of linear frequency response between the two signals. This can be used, for instance, to compare the input and output signals of a system.
相干是频域显示程度的两个信号之间的关系的计算功能。的相干函数值的范围零和一之间,其中的值为零,则表示没有信号之间的因果关系。 1表示的值的两个信号之间的线性频率响应的存在。这可以被用来,例如,用来比较的一个系统的输入和输出信号。
值----------Value----------
When plot is FALSE, this coh returns a two-column matrix, the
当plot是FALSE,coh返回一个两列的矩阵,
注意----------Note----------
This function is based on spec.pgram.
此函数是基于spec.pgram。
(作者)----------Author(s)----------
Jerome Sueur <a href="mailto:sueur@mnhn.fr">sueur@mnhn.fr</a> but this function
is based on <code><a href="../../stats/html/spec.pgram.html">spec.pgram</a></code>
by Martyn Plummer, Adrian Trapletti and B.D. Ripley.
参见----------See Also----------
ccoh, spectro, spec.pgram.
ccoh,spectro,spec.pgram。
实例----------Examples----------
wave1<-synth(d=1,f=4000,cf=500)
wave2<-synth(d=1,f=4000,cf=800)
coh(wave1,wave2,f=4000)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|