data_exp_ip.m
来自「M file for Inverted pendulum. 忘添加两个文件.补」· M 代码 · 共 18 行
M
18 行
%------------------------------------------------------------------------
% data_exp_ip.m
% Design and Development of Closed Loop Control for INVERTED PENDULUM
% By IIEE Visionaries
% Copyright 2003
% Experimental Data of the Inverted Pendulum System
%------------------------------------------------------------------------
% expdata is a MAT File (MATLAB specific binary file),
% with variables exp_data & tout
load expdata
plot (tout,exp_data);
xLabel ('Time (Seconds)');
yLabel('Pendulum Position From Vertical (Degrees)');
Title('Experimental Data');
axis ([0 0.15 -40 40]);
Grid;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?