MATLAB实现十三折线编码

MATLAB实现十三折线编码 源代码: %主函数: function pcm() t=0:0.1:6pi; x=sin(t); %模拟信源 subplot(2,1,1); plot(t,x); title ( ‘原始模拟信号’ ); t1=0:2pi/32:6*pi; %按每周期取32个点抽样 x1=sin(t1); subplot(2,1,2); plot(t1,x1); stem(t1,x1)
相关文章
相关标签/搜索