matlab的一些函数,是初学习者的好资料,

源代码在线查看: ex031300.m

软件大小: 131 K
上传用户: guoliushuan
关键词: matlab 函数
下载地址: 免注册下载 普通下载 VIP

相关代码

				% 第三章: 例 3.13:
				%
				w = [0:1:500]*pi/500;  % 把[0, pi]轴分为501个点
				X = exp(j*w) ./ (exp(j*w) - 0.9*ones(1,501));
				magX = abs(X); angX = angle(X);
				subplot(2,1,1); plot(w/pi,magX); grid; axis([0,1,0,10])
				xlabel(''); ylabel('|H|');
				title('振幅特性');
				subplot(2,1,2); plot(w/pi,angX/pi); grid
				xlabel('频率(以pi为单位)'); ylabel('相位(以pi弧度为单位)');
				title('相位特性');
							

相关资源