注册 登录
编程论坛 Matlab

用angle求y=sin(100*pi*t)相位角时遇到了困难

lyylj 发布于 2006-04-16 11:19, 2644 次点击
我求出的相频图是与理论图像相差太大。  这是怎么回事呀?  请高手指点一下
4 回复
#2
crazyrabbit2006-04-16 12:41
你的t是个什么呀,要特别注意点乘的用法.
#3
sun88392006-05-05 21:50
有没有考虑相位解缠(unwrap)啊
#4
lang7722008-01-03 18:02
angle求的相位在[-pi,pi]之间.
#5
seidel2008-01-04 19:40
把帮助给你看看,你应该就清楚了:
P = angle(Z) returns the phase angles, in radians, for each element of complex array Z. The angles lie between . For complex Z, the magnitude R and phase angle theta are given by R = abs(Z)
theta = angle(Z)
and the statement Z = R.*exp(i*theta)
converts back to the original complex Z.
1