📄 data_exp_ip.m
字号:
%------------------------------------------------------------------------
% 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -