plot_11_5_abc.m
来自「《自适应信号处理》书中各个章节的matlab仿真的源程序!对于学习自适应信号处理」· M 代码 · 共 33 行
M
33 行
% This script assumes that the script batch.m in this directory
% has been run and thus generated the files run(1-9).mat
% make figure 11.5a
figure
plot_mvdr('run1');
hold on
plot_mvdr('run2');
plot_mvdr('run3');
hold off
title('figure 11.5a');
print -dpsc 11_5a
% make figure 11.5b
figure
plot_mvdr('run4');
hold on
plot_mvdr('run5');
plot_mvdr('run6');
hold off
title('figure 11.5b');
print -dpsc 11_5b
% make figure 11.5c
figure
plot_mvdr('run7');
hold on
plot_mvdr('run8');
plot_mvdr('run9');
hold off
title('figure 11.5c');
print -dpsc 11_5c
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?