%Chebyshev type Ⅰanalog lowpass filter prototype
n=0:0.01:2;
for i=1:4
switch i
case 1
N=2;
case 2
N=4;
case 3
N=6;
case 4
N=8;
end
Rp=1;
[z,p,k]=cheb1ap(N,Rp); % cheb1ap
[b,a]=zp2tf(z,p,k);
[H,w]=freqs(b,a,n);
magH2=(abs(H)).^2;
%Output
posplot=['22' num2str(i)]; % num2str(i) 前加个空格
subplot(posplot)
plot(w,magH2);
axis([0 2 0 1]);
xlabel('w/wc');
ylabel('ChebyshevⅠ|H(jw)|^2');
title(['N=' num2str(N)]); % num2str(i) 前加个空格
grid
end
你好,我看了下 posplot=['22'num2str(i)];只有一个参数。
num2str(randn(2,2),3) produces the string matrix
-0.433 0.125
-1.671 0.288
不是应该两个吗、?