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

📄 ex_11_07_1.m

📁 其中
💻 M
字号:
%  ex_11_07_1.m :  习题 11.7

clear all;
close all;
load test x;
M=32;lag=-32:1:32
m_r=xcorr(x,M,'biased');
m_real=real(m_r);
m_imag=imag(m_r);
figure('color','w');
subplot(211)
plot(lag,m_real);grid on;

subplot(212)
plot(lag,m_imag);grid on;
%title('imag');

⌨️ 快捷键说明

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