13 Star 65 Fork 19

007lz / PID_Parameters_Auto_Tuning

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
disp_PID.m 305 Bytes
一键复制 编辑 原始数据 按行查看 历史
function [y,t] = disp_PID(num,den)
%用来显示PID整定结果
t=0:0.01:30;
sys=tf(num,den);
y=step(sys,t); %画出响应曲线
grid on; %画网格%选择满足要求的积分时间
axis([0 30 0 1.5]);
end
Matlab
1
https://gitee.com/git-lz/PID_Parameters_Auto_Tuning.git
git@gitee.com:git-lz/PID_Parameters_Auto_Tuning.git
git-lz
PID_Parameters_Auto_Tuning
PID_Parameters_Auto_Tuning
master

搜索帮助