|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
X(t)=A*exp(A*t)*X0;其中A为2*2常阵,X0为2*1常阵,t为变量,我要把这个函数的轨迹画出来
我写的代码如下:
syms t;
A=[ -26.6681 -10.9993; -10.9993 -69.3219];
X0=[5;-4];
X=A.*exp(A*t)*X0;
figure(1)
plot(t,X(:,1),'r-');
axis([0 12 -6 6]);
grid on;
xlabel('times')
ylabel('system states')
运行出错:
??? Error using ==> plot
Conversion to double from sym is not possible.
Error in ==> theo31 at 82
plot(t,X(:,1),'r-');
|
|