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

📄 exp4_11.m

📁 用Canny算子检测图像的边缘 P0404:图像的阈值分割 P0405:用水线阈值法分割图像 P0406:对矩阵进行四叉树分解 P0407:将图像分为文字和非文字的两个类别 P0408:形态学梯度检测
💻 M
字号:
%exp4_11.m
%已知系统的传递函数为:G(s)=K/(s^3+52s^2+100^s)
%求当K分别取1300和5200时,系统的极坐标频率特性图
clear
close all
clc
k1=1300;
k2=5200;
w=8:1:80;
num1=k1;
num2=k2;
den=[1 52 100 0];
figure(1)
subplot(211)
nyquist(num1,den,w);
subplot(212)
pzmap(num1,den);
figure(2)
subplot(211)
nyquist(num2,den,w);
subplot(212)
[rm,im]=nyquist(num2,den);
plot(rm,im)
xlabel('real')
ylabel('image')
title('w from 负无穷 to 零')
figure(3)
[numc,denc]=cloop(num2,den);
subplot(211)
step(numc,denc)
subplot(212)
[numc1,denc1]=cloop(num1,den);
step(numc1,denc1)

⌨️ 快捷键说明

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