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

📄 linmodel.m

📁 《嵌入式控制系统及其CC++实现-面向使用Matlab的软件开发者》源码
💻 M
字号:
% 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -