unwrap(signal)
unwrap()所属R语言包:signal
Unwrap radian phases
不折弧度相
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Unwrap radian phases by adding multiples of 2*pi as appropriate to remove jumps.
不折2 * pi的倍数,适当删除跳跃的弧度阶段。
用法----------Usage----------
unwrap(a, tol = pi, dim = 1)
参数----------Arguments----------
参数:a
vector of phase angles in radians.
向量,以弧度为单位的相位角。
参数:tol
tolerance for removing phase jumps.
消除相位跳变的宽容。
参数:dim
dimension with which to apply the phase unwrapping.
申请相位展开的尺寸。
值----------Value----------
A vector with the unwrapped phase angles.
一个向量的展开相位角。
(作者)----------Author(s)----------
Original Octave version by Bill Lash. Conversion to R by Tom Short.
参考文献----------References----------
----------Examples----------
phase <- c(seq(0, 2*pi, length=500), seq(0, 2*pi, length=500))
plot(phase, type = "l", ylim = c(0, 4*pi))
lines(unwrap(phase), col = "blue")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|