-
duovan
发布于
DSP
-
0评论
-
15690次浏览
-
1733人收藏
-
2019-07-13 11:25
class="markdown_views prism-github-gist">
一、对连续时间信号进行离散抽样,样例程序
clf;
t = 0:0.0005:1;
f = 3;
xa = cos(2*pi*f*t);
subplot(2,1,1)
plot(t,xa);grid
xlabel('Time, msec');ylabel('Amplitude');
title('Contin...