?? example6_36a.m
字號:
A=[0 1;-1 -2];
b=[1;-1];
C=[1 0];
d=0;
n=2;
S=ctrb(A,b);
if det(S)~=0
rcam=rank(S);
if rcam==n
disp('System is controlled')
elseif rcam<n
disp('System is no controlled')
end
elseif det(S)==0
disp('System is no controlled')
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -