当前位置:网站首页>DP的基本递归方程
DP的基本递归方程
2022-07-26 11:00:00 【AutoGalaxy】
一.先献出老师的PPT



二. 咱就是说,四页PPT,可以总结出动态规划的基本递推方程
这里再自己手推一下,以作记录
针对的系统长下面这个样子:

我们的目标是:求容许的
,使得下述性能指标函数最小
![J_{N}=\sum_{k=0}^{N-1}L[x(k),u(k),k]](http://img.inotgo.com/imagesLocal/202207/26/202207261100367482_9.gif)
这里由于是从
开始的,因此性能指标函数可以表示为![J[x(0),u]](http://img.inotgo.com/imagesLocal/202207/26/202207261100367482_8.gif)
这里再多说一句,为了使问题一般化,值的是出发于任意状态
,那么性能指标函数可以记为
,同时
表示的含义如下:由状态
到过程终点为止,由任意序列u所导致的代价。
之后引出引出最优性能指标(如下的记法):
![J^*[x(k),u]=J[x(k),u^*]=J^*[x(k)]](http://img.inotgo.com/imagesLocal/202207/26/202207261100367482_1.gif)
由于x(k)距离决策终端还有N-k级,因此这里用
表示初始状态为x(k),距离决策终端还有N-k级的最优性能指标。
接下来再来进一步推导![J^*_{N-k}[x(k)]](http://img.inotgo.com/imagesLocal/202207/26/202207261100367482_12.gif)
![\begin{aligned} J^*_{N-k}[x(k)] &=\min_{u(k),u(k+1),...,u(N-1)}\sum_{j=k}^{N-1} L[x(j),u(j),j]\\ &= \min_{u(k),u(k+1),...,u(N-1)}(L[x(k),u(k),k]+\sum_{j=k+1}^{N-1} L[x(j),u(j),j]) \\ \end{aligned}](http://img.inotgo.com/imagesLocal/202207/26/202207261100367482_2.gif)

上面总结起来,就是一个系统,一个目标性能指标函数,一个推导(推导的目标找出当前状态与下一状态的关系)
最后进入到一个实际例子
对于上述的性能指标函数,没有末值项
那么由上述递推式可以得到关于x[N]的式子

进而有

依次迭代,从后向前,把最优控制策略u给求出来
边栏推荐
- 母亲
- PyQt5快速开发与实战 第1章 认识PyQt5
- Notes on intellectual property law in Yu classroom
- Traversal recursion + iteration of binary tree
- 【转载】多元高斯分布(The Multivariate normal distribution)
- SCADA and three industrial control systems PLC, DCS and FCS
- postman 导出导入
- Bash shell learning notes (V)
- logging基本使用
- Novice source code hashtable
猜你喜欢
随机推荐
Dichotomous template summary
Traversal recursion + iteration of binary tree
easyui02
A new technical director asked me to do an IP territorial function~
3dunity game project practice - first person shooting game
HCI interface
雨课堂 《知识产权法》笔记
数据可视化-《白蛇2:青蛇劫起》(2)
由浅入深搭建神经网络
UDF and analysis case of sparksql, 220725,
PyQt5快速开发与实战 第1章 认识PyQt5
-bash: ./build.sh: /bin/bash^M: 坏的解释器: 没有那个文件或目录
Scrapy shell出现的一个错误
为什么放弃npm转向yarn了
ArrayList of novice source code
easyui04
Esxi6.5 patch update
Classic Bluetooth connection process
MySQL死锁分析
Generation and transformation of pulse waveform









