linmodel.m
来自「《嵌入式控制系统及其CC++实现-面向使用Matlab的软件开发者》源码」· M 代码 · 共 30 行
M
30 行
% Embedded Control Systems in C/C++
% by Jim Ledin
%
% Chapter 10 - Helicopter control system example
%
% This M-file contains the linear models used in the
% controller design for the Helicopter simulation.
% These models were produced by linearizing the
% helicopter plant model.
% Roll motion linear model
roll_num = -70.5739;
roll_den = [1 0 0];
roll_sys = ss(tf(roll_num, roll_den));
% Pitch motion linear model
pitch_num = 11.3746;
pitch_den = [1 0 0];
pitch_sys = ss(tf(pitch_num, pitch_den));
% Yaw motion linear model
yaw_num = -17.0959;
yaw_den = [1 0 0];
yaw_sys = ss(tf(yaw_num, yaw_den));
% Vertical motion linear model
vert_num = 0.0979335;
vert_den = [1 0 0];
vert_sys = ss(tf(vert_num, vert_den));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?