i need to plot a sine wave of 1khz using sampling frequency. where am i going wrong? i need a correct representation of wave.
29 次查看(过去 30 天)
显示 更早的评论
fs=10000;%sampling frequency
ts=1/fs;
t=0:ts:1-ts;
f1=10;
a=sin(2*pi*f1*t);
plot(t,a);
4 个评论
Walter Roberson
2021-3-9
fs=10000;%sampling frequency
ts=1/fs;
t=0:ts:1-ts;
f1=10;
a=sin(2*pi*f1*t);
plot(t,a);
That looks appropriate time to me. Your upper bound on your t is just before 1 (second) and you draw to 1 (second)
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!