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

📄 lotplot.m

📁 里面囊括了基于matlab滤波器设计的各种.m文件
💻 M
字号:
 function lotplot(P)

% LOTPLOT(P) will plot the basis functions in P,
% which is produced by LOT(icc, N).

%x(1) = setstr(49)
logplot(P(:,1))
axis([0,0.5,-80,0])
%text(0,-4,x);
pause
hold on
for I = 2:size(P,2)
% x(I) = setstr(I+48);
  logplot(P(:,I))
%  text(0.03125*I,-4,x(I))
  pause
end
title('LOT')

⌨️ 快捷键说明

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