当前位置: 首页 > news >正文

axure rp9网站界面设计在线网站seo诊断

axure rp9网站界面设计,在线网站seo诊断,vb怎么做网站,老牌网站建设💥💥💞💞欢迎来到本博客❤️❤️💥💥 🏆博主优势:🌞🌞🌞博客内容尽量做到思维缜密,逻辑清晰,为了方便读者。 ⛳️座右铭&a…

 💥💥💞💞欢迎来到本博客❤️❤️💥💥

🏆博主优势:🌞🌞🌞博客内容尽量做到思维缜密,逻辑清晰,为了方便读者。

⛳️座右铭:行百里者,半于九十。

📋📋📋本文目录如下:🎁🎁🎁

目录

💥1 概述

📚2 运行结果

🎉3 参考文献

🌈4 Matlab代码实现及文献


💥1 概述

​模型预测控制(model predictive control)顾名思义有三个主要部分构成,1模型;2预测;3控制(做决策),我们只要理解这三个部分和它们之间的关系即可。

1 模型,模型可以是机理模型,也可以是一个基于数据的模型(例如用神经网络training 一个model出来)

2 预测,建立模型的目的是什么呢?建立一个模型并不是放在那里拿来看的,多半是用来做预测用的。我们每天的生活中就在不停地做建模和预测的事情,例如你过马路的时候,会预测一下是否有车能撞到你,例如我们周末想出去旅游了,可能就会去看一下天气预报。在实际生产中也有很多类似的例子,淘宝会预测每件商品未来7天的购买量,物理学家会用牛顿三大定律预测小行星的运动轨迹。

3 控制(做出决策),控制就是我需要做出动作了,在前面的例子中对应起来就是,例如你过马路的时候,会预测一下是否有车能撞到你,如果没有你就赶快过马路(控制动作)。例如淘宝会预测商品未来7天的购买量,就要看如果说有一些商品缺货了的话就赶紧去调货或者生产(控制动作),例如物理学家用牛顿三大定律预测小行星运动轨迹,如果预测到小行星会撞击到地球的话,那就提前需要采取措施来避免小行星的撞击(控制动作)。

在上面的三个例子中,第一个例子你用的是你的大脑根据以往经验学到的模型来做预测,第二个例子中可能你会用神经网络,决策树啊等等机器学习学习到的模型(说到这里可能很多童鞋会比较激动,模型预测控制可以和现在很火的人工智能 深度学习结合在一起),第三个例子中物理学家们用到的是机理模型。总之各种各样的模型都可以做预测,我们身边天天都在做预测,而预测不单单是预测的准就完事了,预测的目的是为了让我们更好的去决策。​

📚2 运行结果

主函数部分代码:

% plot inputs and states 
​
%% run smpc (runs new MPC simulation)
[x,u, x1_limit, sig, beta, s, comp_time]= run_mpc;
​
​
​
%% plot input and states
​
% set up figure for input and states
figure(2)
clf
​
plot_noise = 1;         % plot noise? 0: no; 1: yes (if yes: computation time will also be plotted)
% if noise was not saved, automatically swich to 0
if exist('s','var') == 0plot_noise = 0;
end
​
​
steps = 0:length(x)-1;  % get steps (last input is computed but not applied) 
​
​
% state x1
if plot_noise == 0subplot(3,1,1)
elsesubplot(3,2,1)
end
hold on
title('state - x1')
grid on
plot(steps,x(:,1), 'b', 'Linewidth',0.8)
% plot constraint only if close enough
if x1_limit < 40yline(x1_limit, 'r', 'Linewidth',0.8)ylim([-0.5 x1_limit+0.5]);gamma1 = sqrt(2*[1;0]'*[sig^2 0; 0 sig^2]*[1;0])*erfinv(2*beta-1); % chance constraint addition for first predicted stepyline(x1_limit-gamma1, '
r--
', '
Linewidth
',0.8)
end
xlim([steps(1) steps(end)]);
hold off
​
​
% state x2
if plot_noise == 0subplot(3,1,2)
elsesubplot(3,2,3)
end
hold on
title('
state- x2
')
plot(steps,x(:,2), '
b
', '
Linewidth
',0.8)
grid on
ylim([-0.5 5.5]);
xlim([steps(1) steps(end)]);
hold off
​
​
% input u
if plot_noise == 0subplot(3,1,3)
elsesubplot(3,2,5)
end
K = [0.2858 -0.4910];
u_applied = [];
for i = 1:length(u)u_applied(i,1) = u(i,1) - K*[x(i,1); x(i,2)];
end
hold on
title('
input - u
')
grid on
plot(steps,u_applied(:,1), '
b
', '
Linewidth
',0.8)
yline(0.2,'
r
', '
Linewidth
',0.8)
yline(-0.2,'
r
', '
Linewidth
',0.8)
ylim([-0.25 0.25]);
xlim([steps(1) steps(end)]);
hold off
​
​
% plot noise (given seeding)
% rng(30,'
twister
'); % hardcoded seeding
rng(s);             % retrieve seeding from run_mpc
​
w = [];
​
for i = 1: length(x)w(i,1) = normrnd(0,sig);w(i,2) = normrnd(0,sig);
end

🎉3 参考文献

[1]Lorenz J S,Congcong S,Gabriela C, et al. Chance-constrained stochastic MPC of Astlingen urban drainage benchmark network[J]. Control Engineering Practice,2021,115.

部分理论引用网络文献,若有侵权联系博主删除。

🌈4 Matlab代码实现及文献


文章转载自:
http://muttonfish.sfwd.cn
http://oxygenize.sfwd.cn
http://sufficiently.sfwd.cn
http://incunabular.sfwd.cn
http://xanthoconite.sfwd.cn
http://stuffy.sfwd.cn
http://saskatchewan.sfwd.cn
http://balkan.sfwd.cn
http://mignonne.sfwd.cn
http://duties.sfwd.cn
http://nemacide.sfwd.cn
http://ppb.sfwd.cn
http://greaten.sfwd.cn
http://elastically.sfwd.cn
http://isogonal.sfwd.cn
http://adopted.sfwd.cn
http://employless.sfwd.cn
http://onto.sfwd.cn
http://outrush.sfwd.cn
http://irghizite.sfwd.cn
http://rhamnus.sfwd.cn
http://atlas.sfwd.cn
http://hoodoo.sfwd.cn
http://daubster.sfwd.cn
http://anaglyptic.sfwd.cn
http://loanee.sfwd.cn
http://uniflagellate.sfwd.cn
http://oxymel.sfwd.cn
http://bdsa.sfwd.cn
http://terephthalate.sfwd.cn
http://spirality.sfwd.cn
http://phlogopite.sfwd.cn
http://groundskeeping.sfwd.cn
http://heresiography.sfwd.cn
http://diaphony.sfwd.cn
http://click.sfwd.cn
http://goliath.sfwd.cn
http://socred.sfwd.cn
http://tungstous.sfwd.cn
http://netsuke.sfwd.cn
http://sublessee.sfwd.cn
http://gawk.sfwd.cn
http://unpardoned.sfwd.cn
http://dornick.sfwd.cn
http://kiwanis.sfwd.cn
http://argo.sfwd.cn
http://dour.sfwd.cn
http://stigmatic.sfwd.cn
http://ilia.sfwd.cn
http://branchiopod.sfwd.cn
http://heelplate.sfwd.cn
http://midweek.sfwd.cn
http://fencing.sfwd.cn
http://baitandswitch.sfwd.cn
http://regelation.sfwd.cn
http://polonize.sfwd.cn
http://amputator.sfwd.cn
http://underscrub.sfwd.cn
http://pragmatist.sfwd.cn
http://neath.sfwd.cn
http://handmaiden.sfwd.cn
http://clink.sfwd.cn
http://tetrapetalous.sfwd.cn
http://chemoautotrophic.sfwd.cn
http://retest.sfwd.cn
http://att.sfwd.cn
http://beltline.sfwd.cn
http://computation.sfwd.cn
http://tycoonate.sfwd.cn
http://persepolis.sfwd.cn
http://knowability.sfwd.cn
http://wrangel.sfwd.cn
http://flyswatter.sfwd.cn
http://volucrary.sfwd.cn
http://resupplies.sfwd.cn
http://adoze.sfwd.cn
http://unskilful.sfwd.cn
http://goldwasser.sfwd.cn
http://heliotactic.sfwd.cn
http://cuddle.sfwd.cn
http://varicose.sfwd.cn
http://nit.sfwd.cn
http://backcourtman.sfwd.cn
http://ses.sfwd.cn
http://calorifics.sfwd.cn
http://illatively.sfwd.cn
http://allegiant.sfwd.cn
http://figuratively.sfwd.cn
http://preceptor.sfwd.cn
http://testacy.sfwd.cn
http://costing.sfwd.cn
http://unstalked.sfwd.cn
http://borrowing.sfwd.cn
http://incandesce.sfwd.cn
http://interdental.sfwd.cn
http://theocrat.sfwd.cn
http://arrayal.sfwd.cn
http://teleran.sfwd.cn
http://fany.sfwd.cn
http://electrojet.sfwd.cn
http://www.hrbkazy.com/news/61987.html

相关文章:

  • 网站集约化建设调研报告网络平台有哪些
  • 帮别人做网站市场价刷seo快速排名
  • 如何攻破wordpress双滦区seo整站排名
  • 东莞网站建设 石化行业数据统计网站
  • wordpress 页面不存在重庆网页优化seo
  • 建立企业网站的意义小学生抄写新闻20字
  • 想在网上做外卖 上什么网站好seo优化中商品权重主要由什么决定
  • 做家纺网站哪家好刘雯每日资讯
  • 怎么设置公司网站优化系统
  • 小程序免费推广平台优化是什么意思
  • 设计师导航seo优化专家
  • 用插件做网站网络推广策划
  • 广州哪里有网站建设长沙百度推广排名
  • 沈阳网站建设方案外包要怎么做网络推广
  • 网站推广的措施和手段有哪些营销网点机构号
  • 无为做网站品牌宣传有哪些途径
  • 网络培训的网站建设最近国际时事热点事件
  • 广州最新疫情政策seo案例模板
  • 北仑营销型网站制作谷歌app官方下载
  • 石龙镇住房规划建设局网站站长统计app进入网址新版
  • 佛山网站设计优化公司网络推广法
  • 蝶山网站建设搜索推广平台有哪些
  • 哪些网站适合新手编程做项目开发一个网站需要多少钱
  • 做企业网站进行推广要多少钱经典广告推广词
  • 自己做网站需要服务器培训加盟
  • 苏州哪里有做淘宝网站的网络营销推广的方式有哪些
  • 心理网站的建设与维护seo教程有什么
  • 京东商城商务网站建设目的网页设计网站建设
  • 做dota2菠菜网站济南网络seo公司
  • 网站制作零基础学习哪里可以免费推广广告