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

📄 example6_39.m

📁 这是一个MATLAB6。5 辅助控制系统设计与仿真例题的所有源码
💻 M
字号:
for alph=[-1:1]
    alph
    num=[1,alph];
    den=[2 7 24 19];
    [A,B,C,D]=tf2ss(num,den);
    cam=ctrb(A,B);
    rcam=rank(cam);
    ob=obsv(A,C);
    roam=rank(ob);
    CAM=ctrb(A,B);
    rcam=rank(CAM);
    n=3;
    if rcam==n
        disp('System is controlled')
        if rcam<n
            disp('System is no controlled')
        end
        ob=obsv(A,C);
        roam=rank(ob);
        if roam==n
            disp('System is observable')
        else
            disp('System is no observable')
        end
    end

⌨️ 快捷键说明

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