prefilterplot.asv
来自「自己写的关于lpc分析与合成的Demo程序」· ASV 代码 · 共 29 行
ASV
29 行
% prefilterplot.m
a=1;
b=[1, -0.9375];
[H,w] = freqz(b,a,256);
magH=abs(H);
phaH=angle(H);
set (0, 'DefaultAxesFontSize', 8, ...
'DefaultAxesFontName', 'Times');
figure;
set (gcf, 'Units', 'centimeter');
pos = get (gcf, 'Position');
pos(3) = 10;
pos(4) = 8;
set (gcf, 'Position', pos);
set (gca, 'Units', 'centimeter');
set (gca, 'Position', [1.5 1.2 8 6]);
plot(w/pi,magH);
xlabel('Frequency, Hz');ylabel('Amplitude')
set (gcf, 'PaperPositionMode', 'auto');
print -depsc SamplePlot.eps;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?