📄 afdscube.m
字号:
function h = afdscube(dstable)
% afdscube.m AFDS selectivity-ripple-frequency
% design space cuboids
% 11:52 17/2/99
%
% Authors: Dejan V. Tosic, Miroslav D. Lutovac, 1999.02.16
% tosic@telekom.etf.bg.ac.yu
% lutovac@galeb.etf.bg.ac.yu
%
% Copyright (c) 1999 by Tosic & Lutovac
% $Revision: 1.0 $ $Date: 1999/02/16 21:27:42 $
%
% References:
% Miroslav D. Lutovac, Dejan V. Tosic, Brian L. Evans
% Advanced Filter Design for Signal Processing
% Using MATLAB and Mathematica
% calls:
%% afdswire.m
N = dstable(:,1);
Xmin = dstable(:,2);
Xmax = dstable(:,3);
Ymin = dstable(:,4);
Ymax = dstable(:,5);
Zmin = dstable(:,6);
Zmax = dstable(:,7);
colorset = ['y','g','c','r','m','b'];
colornum = length(colorset);
for k = 1:length(N)
colorind = rem(k,colornum);
if colorind==0
colorind = colornum;
end
wirecolor = colorset(colorind);
afdswire(Xmin(k),Xmax(k),Ymin(k),Ymax(k),Zmin(k),Zmax(k),wirecolor);
hold on;
end
xlabel('x', 'FontName','Symbol', 'FontSize',18);
ylabel('e', 'FontName','Symbol', 'FontSize',18);
zlabel('fp', 'FontName','Times', 'FontSize',18);
title('selectivity-ripple-frequency design space cuboids');
hold off;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -