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)
相關文章
相關標籤/搜索