lihaitao123 发表于 2015-12-18 02:19

关于 线性扫频 chirp 函数 的疑惑。

想做一个线性扫频,激励部分代码如下:

t=0:0.02:200;
f=chirp(t,2*pi*10,200,2*pi*30);
figure
plot(f)

如图 f 中间有明显的断带, 不知道怎么解释, 按照 自己的理解 随着频率的增加激励函数应该越来越密才对。。

hit126 发表于 2015-12-19 17:03

chirp产生的是调频信号

lihaitao123 发表于 2016-1-20 10:33

是调频信号,而且频率是增加的

ChaChing 发表于 2016-1-21 10:06

建议使用前稍微看下help说明
y = chirp(t,f0,t1,f1) generates samples of a linear swept-frequency cosine signal at the time instances defined in array t, where f0 is the instantaneous frequency at time 0, and f1 is the instantaneous frequency at time t1. f0 and f1 are both in hertz.

LZ从20*pi=62.8Hz开始扫,但取样仅50Hz,当然造成信号扭曲

lihaitao123 发表于 2016-1-21 11:06

ChaChing 发表于 2016-1-21 10:06
建议使用前稍微看下help说明
y = chirp(t,f0,t1,f1) generates samples of a linear swept-frequency cosi ...

是的,您的解释很到位,我当时把2*pi*10当成 10Hz 了。
页: [1]
查看完整版本: 关于 线性扫频 chirp 函数 的疑惑。