⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zdct1.m

📁 用MATLAB实现数字信号处理的程序
💻 M
字号:
%DCT的应用
t=0:0.001:1;
x=t+sin(2*pi*10*t).*cos(2*pi*t);
y=dct(x);
n=fix(length(y)/20);
y(n+1:length(y))=0;
z=idct(y);
subplot(3,1,1),plot(t,x);
subplot(3,1,2),plot(t,y);
subplot(3,1,3),plot(t,z);

⌨️ 快捷键说明

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