getphaselag2(RSEIS)
getphaselag2()所属R语言包:RSEIS
Phase Lag
相位滞后
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Use MTM spectrum to estimate phase lag between two signals.
使用MTM谱估计两个信号之间的相位滞后。
用法----------Usage----------
getphaselag2(y1, y2, DT = 0.008, frange = c(0, 20), PLOT = FALSE, PLOT1 = FALSE, PLOT2 = FALSE)
参数----------Arguments----------
参数:y1
vector times series one
矢量时间序列
参数:y2
vector times series two
矢量次系列之二
参数:DT
deltaT sample rate, s
DeltaT的采样率,S
参数:frange
vector, frequency bounds for analysis
矢量,频率为分析范围
参数:PLOT
logical, TRUE=diagnostic plot
逻辑,TRUE =诊断图
参数:PLOT1
logical, TRUE=diagnostic plot
逻辑,TRUE =诊断图
参数:PLOT2
logical, TRUE=diagnostic plot
逻辑,TRUE =诊断图
Details
详细信息----------Details----------
uses the slope of the cross spectrum to estimate the phase lag.
使用交叉谱斜率估计的相位滞后。
值----------Value----------
phase lag, seconds
相位滞后,秒
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees.edu>
参见----------See Also----------
mtapspec
mtapspec
实例----------Examples----------
data("GH")
Xamp1=GH$JSTR[[1]]
Xamp1=Xamp1[1123:2000]
Xamp2= GH$JSTR[[4]]
Xamp2=Xamp2[1123:2000]
plot(Xamp1,type='l')
lines(Xamp2,type='l',col='red')
pshift = getphaselag2(Xamp1, Xamp2, DT=GH$info$dt[1], frange=c(5, 15), PLOT=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|