欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

ip_04_09.m

(书)现代通信系统使用MATLAB第四章
M
字号:
% MATLAB script for Illustrative Problem 4.9.
echo on
t=[0:0.01:10];
a=sin(t);
[sqnr8,aquan8,code8]=u_pcm(a,8);
[sqnr16,aquan16,code16]=u_pcm(a,16);
pause	% Press a key to see the SQNR for N = 8.
sqnr8
pause	% Press a key to see the SQNR for N = 16.
sqnr16
pause	% Press a key to see the plot of the signal and its quantized versions.
plot(t,a,'-',t,aquan8,'-.',t,aquan16,'-',t,zeros(1,length(t)))

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -