0

我有一个有很多频率的向量。现在我尝试编写一个正弦波,它为每个频率生成一个周期并将其放入一个向量中......(类似于扫描信号)

最后我想绘制这个......

我已经尝试过了,但它不能正常工作..

%fr = Frequency-Vector with 784 Elements from 2.0118e+04 to 1.9883e+04 Hz

fs = 48000; %Sampling frequency [Hz]

tstart = 0;
tstep = 1/fs;
tend = (length(fr))*(1/min(fr))-tstep;
t3 = tstart3:tstep3:tend3;



sin3 = [];
for i = 1:length(fr)/2
sin3 = [sin3 sin(2*pi*fr(i)*t3)];
end

tstart4 = 0;
tstep4 = 1/fs2;
tend4 = tstep4*length(sin3);
t4 = tstart4:tstep4:tend4-tstep4;

figure;
plot(t4,sin3)

请你帮助我好吗?

谢谢!

4

1 回答 1

0

如果正确地对代码进行逆向工程,您似乎想要生成啁啾频率。如果您按照以下方式进行操作,可能会更有效率

fr = linspace(2.0118e4, 1.9883e4, 784);  % Frequency content
%fr = linspace(2e4, 1e4, 784);           % Try this for a wider chirp

fs = 48e3;
phi = cumsum(2*pi*fr/fs);
s1 = sin(phi);

spectrogram(s1, 128, 120, 128, fs);      % View the signal in time vs frequency
于 2013-08-20T13:41:28.263 回答