📄 ex4_6.m
字号:
% Gives plot for Example 4.6
%
w = 0:0.2:50;
b = 10;
X = (1)./(b+j*w);
clf
subplot(211),plot(w,abs(X)); % plot magnitude of X
title('Example 4.6')
xlabel('Frequency (rad/sec)')
ylabel('|X|')
subplot(212),plot(w,angle(X)*180/pi); % plot angle of X in deg.
xlabel('Frequency (rad/sec)')
ylabel('Angle(X), degrees')
subplot(111)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -