This Telecommunication Standard [TS] describes the detailed mapping from input blocks of 160 speech samples in
13-bit uniform PCM format to encoded blocks of 95, 103, 118, 134, 148, 159, 204, and 244 bits and from encoded
blocks of 95, 103, 118, 134, 148, 159, 204, and 244 bits to output blocks of 160 reconstructed speech samples
標簽:
Telecommunication
describes
Standard
detailed
上傳時間:
2013-12-12
上傳用戶:cuibaigao
數字基帶傳輸系統的MATLAB仿真實現
function [sampl,re_sampl]=system_1(A,F,P,D,snr,m,N)
輸入變量A ,F,P分別為輸入信號的幅度、頻率和相位,D為量化電平數,snr
為信道信噪比,N為D/A轉換時的內插點數;輸出變量sampl為抽樣后的輸入
信號,re_sampl為恢復出的輸入信號。
數字基帶傳輸系統的MATLAB仿真實現
[sampl,quant,PCM]=a_d_1(A,F,P,D)
[changed_ami]=signal_encod_1(PCM)
[ami_after_channel]=channel_1(changed_ami,snr)
[adjudged_ami]=adjudg_1(ami_after_channel,m)
re_PCM=signal_decod_1(adjudged_ami)
[re_voltag,re_sampl,re_sampl1]=d_a_1(re_PCM,sampl,D,N)
標簽:
function
re_sampl
MATLAB
system
上傳時間:
2017-04-21
上傳用戶:tzl1975