LocalUnwrap(RSEIS)
LocalUnwrap()所属R语言包:RSEIS
Unwrap spectrum phase
不折频谱相
译者:生物统计家园网 机器人LoveR
描述----------Description----------
unwrap the phase spectrum so it does not wrap around
解开相位谱,所以它不会环绕
用法----------Usage----------
LocalUnwrap(p, cutoff = cutoff)
参数----------Arguments----------
参数:p
phase spectrum
相位谱
参数:cutoff
cut off angle = pi
切断角=π
值----------Value----------
Unwrapped spectrum
嘉年华谱
注意----------Note----------
Algorithm minimizes the incremental phase variation by constraining it to the range [-pi,pi]
通过限制它的范围[-π,圆周率算法最大限度地减少了增量的相位变化]
(作者)----------Author(s)----------
Jonathan M. Lees<jonathan.lees.edu>
实例----------Examples----------
x = 1:512
amp = sin(1*2*pi*x/16) + sin(2*2*pi*x/16) + sin(3*2*pi*x/16)
spc = fft(amp)
plot(Mod(spc), type='l')
angle = Arg(spc)
plot(angle, type='l')
unang = LocalUnwrap(angle, cutoff =pi )
plot(unang, type='l')
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|