文件名称:das
介绍说明--下载内容均来自于网络,请自行研究使用
Demodulating the signal.
DeAmpMod = (1/2).*(ademod(AmpMod,Fc,Fs, amdsb-sc ,num,den))
(ALTERNATIVE APPROACH)
DeAmpMod = AmpMod.*Cs
Designing butterworth low pass filter.
[num,den] = butter(2,.8)
FilteredOutput = filter(num,den,DeAmpMod)
Plotting the input speech signal data .
subplot(2,2,1)
axis normal
plot(data)
grid on
title( Initial Speech Signal )
xlabel( Samples )
ylabel( Speech Signal )
Plotting the modulated speech signal AmpMod .
subplot(2,2,2)
axis normal
plot(AmpMod)
title( Modulated Speech Signal )
xlabel( Samples )
ylabel( Modulated Signal )- Demodulating the signal.
DeAmpMod = (1/2).*(ademod(AmpMod,Fc,Fs, amdsb-sc ,num,den))
(ALTERNATIVE APPROACH)
DeAmpMod = AmpMod.*Cs
Designing butterworth low pass filter.
[num,den] = butter(2,.8)
FilteredOutput = filter(num,den,DeAmpMod)
Plotting the input speech signal data .
subplot(2,2,1)
axis normal
plot(data)
grid on
title( Initial Speech Signal )
xlabel( Samples )
ylabel( Speech Signal )
Plotting the modulated speech signal AmpMod .
subplot(2,2,2)
axis normal
plot(AmpMod)
title( Modulated Speech Signal )
xlabel( Samples )
ylabel( Modulated Signal )
DeAmpMod = (1/2).*(ademod(AmpMod,Fc,Fs, amdsb-sc ,num,den))
(ALTERNATIVE APPROACH)
DeAmpMod = AmpMod.*Cs
Designing butterworth low pass filter.
[num,den] = butter(2,.8)
FilteredOutput = filter(num,den,DeAmpMod)
Plotting the input speech signal data .
subplot(2,2,1)
axis normal
plot(data)
grid on
title( Initial Speech Signal )
xlabel( Samples )
ylabel( Speech Signal )
Plotting the modulated speech signal AmpMod .
subplot(2,2,2)
axis normal
plot(AmpMod)
title( Modulated Speech Signal )
xlabel( Samples )
ylabel( Modulated Signal )- Demodulating the signal.
DeAmpMod = (1/2).*(ademod(AmpMod,Fc,Fs, amdsb-sc ,num,den))
(ALTERNATIVE APPROACH)
DeAmpMod = AmpMod.*Cs
Designing butterworth low pass filter.
[num,den] = butter(2,.8)
FilteredOutput = filter(num,den,DeAmpMod)
Plotting the input speech signal data .
subplot(2,2,1)
axis normal
plot(data)
grid on
title( Initial Speech Signal )
xlabel( Samples )
ylabel( Speech Signal )
Plotting the modulated speech signal AmpMod .
subplot(2,2,2)
axis normal
plot(AmpMod)
title( Modulated Speech Signal )
xlabel( Samples )
ylabel( Modulated Signal )
(系统自动生成,下载前可以参看下载内容)
下载文件列表
das.m