资源简介
预测控制模型建立与实现开发技术matlab语言编程实现
代码片段和文件信息
function [s rho omega HPhiJ g] = GPCcoef(n p alpha beta)
% Copyright (c) 2014 Yiping Cheng ypcheng@bjtu.edu.cn
% This is to compute the GPC coefficients used by the algorithm
% For details see my paper “A novel DMC-like implementation of GPC“
% p is the prediction horizon
% alpha and beta must be of dimension 1-by-n
% the last element of alpha must be 0
s=zeros(n1);
for i=1:n
s(i) = sum(beta(1:i));
end
rho = zeros(p 1);
for j=1:p
if j rho(j)=-alpha(j);
end
for i=1:min(n-1 j-1)
rho(j) = rho(j) -alpha(i)*rho(j-i);
end
end
omega = zeros(p 1);
for j=1:p
omega(j) = 1+sum(rho(1:j));
end
HPhiJ = zeros(p n);
for k=1:n-1
for j=2:min(p+1k-1)
HPhiJ(j-1k) = 0;
end
if k>=2 && k<=p+1
HPhiJ(k-1k) = 1;
end
fo
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 82 2014-11-03 15:22 radical.m
文件 20532 2014-11-16 17:14 TwoTank.mdl
文件 1064 2014-11-16 17:19 readme_twotank.txt
文件 86297 2014-11-16 16:51 TwoTank.jpg
文件 3553 2014-11-16 13:02 T2TankControl.m
文件 1633 2014-11-16 13:02 T2Tank.m
文件 1232 2014-11-16 10:38 GPCcoef.m
文件 1529 2014-11-16 04:27 license.txt
- 上一篇:基于multisim仿真的非单片机上下课定时打铃
- 下一篇:科斯塔斯环
相关资源
- ar ar模型的一个例子
- PNNpredict19
- RBF-shenjingwangluoyuce RBF神经网络预测控
- RBF-shenjingwangluohundunyuce RBF神经网络混
- stockprediction 基于灰色神经网络的股指
- SVMyuce matlab支持向量机预测
- Time-series-prediction-with-anfis
- Wavelet-network-timeseries 使用小波神经网
- BP-Load-forecasting 基于BP神经网络的短期
- mindxiu 自己写的基于神经网络的电力负
- CNN 这个是一个神经网络预测股票的程
- artificial-neural-network-method 基于人工神
- ICA-wind-prediction 采用最先进的殖民竞争
- BP-wind-prediction 含NWP数值天气预报和不
- windfarm 本资料包括风电场一年内的风
- MPC 一个模型预测控制的编写的程序
- nmpc matlab非线性预测控制nmpc
- rnn-esn 基于神经网络的负荷预测
- SVM SVM回归分析
- ARMA ARMA模型基于时间序列分析和预测
- wind-power 基于极限学习机的短期风电功
- BP2648564
- elm_kernel_trainapredict Kernel_ELM传说中的核
- rnn rnn maltab时间序列预测实现
- ZJGLMPC0 三相电压型PWN整流器的基于模
- Intelligent-predictive-by--MATLAB 《智能预测
- Load-forecating 电力负荷预测非常好的整
- PSO-BP-wind-power 采用粒子群算法PSO优化
- PsoProcess_Micro_Grid 在假设负荷预测、风
- deadbeatcontrol
评论
共有 条评论