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

📄 plotec.m

📁 用dsp解压mp3程序的算法
💻 M
字号:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%    plotec.m - Plot en.dat and cn.dat for comparison
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

load -ascii en.dat;          % load en.dat into vector en
N = length(en); n = [0:N-1]; % time index
load -ascii cn.dat;          % load cn.dat into vector cn
plot(n,en,'r-',n,cn,'b--');  % plot both input and output
axis([0 N-1 -inf inf]);
ylabel('amplitude'); xlabel('time index');
title('Input and output waveforms');

⌨️ 快捷键说明

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