Plot sine wave whose frequency changes with time
显示 更早的评论
Hello.I want to plot a sine wave whose frequency changes with time. The equation is y=sin(2*pi*(50+g)*t) where g=sin(10*pi*t) My problem is ,when I plot the function y from t=0 to 2s, There are "zones" where it does not oscillate.So can some one point out where my mistake is ,thank you.I have been struggled at this point for days. Here is my code:
fs=1000 %Sampling frequency
Ts=1/fs %Sampling period
L=2000 %Sampling length (2000 points)
n=(0:L-1)*Ts %Samples
for count_n=1:length(n)
g(count_n)=sin(10*pi*n(count_n))
y(count_n)=sin(2*pi*(50+g(count_n))*n(count_n))
F(count_n)=50+g(count_n)
end
回答(1 个)
Grzegorz Knor
2012-2-22
t = linspace(0,2,2000);
plot(t,sin(2*pi*(50+sin(10*pi*t)).*t))
类别
在 帮助中心 和 File Exchange 中查找有关 Mathematics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!