稳定性验证程序命令“不稳定”混乱

时间:2019-04-12 06:23:27

标签: matlab

我正在编写代码来检查两个系统的稳定性,并且从输出图中得知一个系统是稳定的,而另一个则不是。但是当我使用命令“ isstable”时。它表明两个系统都是稳定的

我尝试绘制两个系统的输出。这是实际的代码

clc
clear all
close all
t=0:0.1:10
x=cos(2*pi*t)
plot(t,x)
ylim([-2 2])
y1=x.^2
subplot(2,1,1)
plot(t,y1)
ylim([-0.5 1.5])
y2=t.*x
subplot(2,1,2)
plot(t,y2)
stable_of_y1=isstable(y1)
stable_of_y2=isstable(y2) 

enter image description here

0 个答案:

没有答案