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

网站优化和网站推广万词优化

网站优化和网站推广,万词优化,长春哪家做网站做的好,怎么自己做网站🔆 文章首发于我的个人博客:欢迎大佬们来逛逛 数学建模:Logistic回归预测 Logistic回归预测 logistic方程的定义: x t 1 c a e b t x_{t}\frac{1}{cae^{bt}}\quad xt​caebt1​ d x d t − a b e b t ( c a e b t ) 2 >…

🔆 文章首发于我的个人博客:欢迎大佬们来逛逛

数学建模:Logistic回归预测

Logistic回归预测

logistic方程的定义:

x t = 1 c + a e b t x_{t}=\frac{1}{c+ae^{bt}}\quad xt=c+aebt1

在这里插入图片描述

d x d t = − a b e b t ( c + a e b t ) 2 > 0 \frac{dx}{dt}=\frac{-abe^{bt}}{\left(c+ae^{bt}\right)^2}>0 dtdx=(c+aebt)2abebt>0

算法流程

  1. 建立logistic方程

  2. 求解 其三个未知系数:abc

  3. Yule算法求解:构建如下的 线性方程 Z Z Z

    x t + 1 − x t x t + 1 = 1 − x t x t + 1 = 1 − c + a e b ( t + 1 ) c + a e b t = ( a e b t + c − c ) ( 1 − e b ) ( c + a e b t ) = ( 1 − e b ) − c ( 1 − e b ) x t \begin{aligned}\frac{x_{t+1}-x_{t}}{x_{t+1}}=1-\frac{x_{t}}{x_{t+1}} \\&=1-\frac{c+ae^{b(t+1)}}{c+ae^{bt}} \\&=\frac{\left(ae^{bt}+c-c\right)\left(1-e^b\right)}{\left(c+ae^{bt}\right)} \\&=\left(1-e^b\right)-c\left(1-e^b\right)x_t\quad\end{aligned} xt+1xt+1xt=1xt+1xt=1c+aebtc+aeb(t+1)=(c+aebt)(aebt+cc)(1eb)=(1eb)c(1eb)xt

  4. 对此方程进行最小二乘法(OLS),得到方程的估计值然后进而得到 a,b,c的值

γ = 1 − e b 以及  β = − c ( 1 − e b ) , \gamma=1-e^b\text{ 以及 }\beta=-c\big(1-e^b\big), γ=1eb 以及 β=c(1eb),

a ^ = e x p { 1 n [ ∑ t = 1 n l n ( 1 x t − c ^ − n ( n + 1 ) 2 b ^ ) ] } 5 ) \hat a=exp\bigg\{\frac{1}{n}\bigg[\sum_{t=1}^nln(\frac{1}{x_t}-\hat c-\frac{n(n+1)}{2}\hat b)\bigg]\bigg\}5) a^=exp{n1[t=1nln(xt1c^2n(n+1)b^)]}5)

  1. 然后需要预测自变量值 x x x 直接带入即可。

代码实现

function [a,b,c] = mfunc_Logistic(X)% logistic 回归预测% params:%       X: 输入向量% returns:%       a,b,c: 分别为logistic的未知参数n=length(X)-1;% 得到线性方程: Zfor t=1:nZ(t)=(X(t+1)-X(t))/X(t+1);end% 前面插一列全1向量X1=[ones(n,1) X(1:n)']; % (46,2)% 对线性方程 Z 进行最小二乘法OLS% B:回归系数% bint:回归系数的置信区间% r:残差% rint:残差的置信区间% stats:包含四个统计量:R^2, F, 概率p, 估计误差方差Y=Z';[B,Bint,r,rint,stats]=regress(Y,X1);%最小二乘(OLS)gamma=B(1,1);beta=B(2,1);%% 带入公式 计算logistic方程的 abcb=log(1-gamma);c=beta/(exp(b)-1);a=exp((sum(log(1./X(1:n)-c))-n*(n+1)*b/2)/n);
end

文章转载自:
http://agrin.xqwq.cn
http://naphtali.xqwq.cn
http://kylin.xqwq.cn
http://pat.xqwq.cn
http://demitint.xqwq.cn
http://foram.xqwq.cn
http://sunnism.xqwq.cn
http://matchwood.xqwq.cn
http://univalve.xqwq.cn
http://curlycue.xqwq.cn
http://lacus.xqwq.cn
http://messuage.xqwq.cn
http://debater.xqwq.cn
http://shaly.xqwq.cn
http://dreadful.xqwq.cn
http://drylot.xqwq.cn
http://filmscript.xqwq.cn
http://cyclery.xqwq.cn
http://prejudication.xqwq.cn
http://respecting.xqwq.cn
http://bayern.xqwq.cn
http://maranta.xqwq.cn
http://radiotoxin.xqwq.cn
http://adventure.xqwq.cn
http://scholarship.xqwq.cn
http://zineb.xqwq.cn
http://astronautics.xqwq.cn
http://invective.xqwq.cn
http://wrote.xqwq.cn
http://semispherical.xqwq.cn
http://dowtherm.xqwq.cn
http://ongoing.xqwq.cn
http://confidante.xqwq.cn
http://undirected.xqwq.cn
http://synonymist.xqwq.cn
http://triphase.xqwq.cn
http://curdle.xqwq.cn
http://knickknackery.xqwq.cn
http://eyeliner.xqwq.cn
http://mordecai.xqwq.cn
http://contrapuntal.xqwq.cn
http://lotto.xqwq.cn
http://ragefully.xqwq.cn
http://subdual.xqwq.cn
http://clearstory.xqwq.cn
http://smut.xqwq.cn
http://pentasyllable.xqwq.cn
http://salespeople.xqwq.cn
http://bemoisten.xqwq.cn
http://hyraces.xqwq.cn
http://taeniafuge.xqwq.cn
http://diarist.xqwq.cn
http://crmp.xqwq.cn
http://woodsy.xqwq.cn
http://dirtiness.xqwq.cn
http://sugarberry.xqwq.cn
http://queenside.xqwq.cn
http://blooper.xqwq.cn
http://sneer.xqwq.cn
http://seafowl.xqwq.cn
http://mourner.xqwq.cn
http://australorp.xqwq.cn
http://troglodyte.xqwq.cn
http://steak.xqwq.cn
http://highstrikes.xqwq.cn
http://prolonge.xqwq.cn
http://lientery.xqwq.cn
http://mediatrix.xqwq.cn
http://informed.xqwq.cn
http://unopened.xqwq.cn
http://bearnaise.xqwq.cn
http://foxtail.xqwq.cn
http://contexture.xqwq.cn
http://pori.xqwq.cn
http://gallstone.xqwq.cn
http://twaddly.xqwq.cn
http://dichasium.xqwq.cn
http://rachet.xqwq.cn
http://quadruplicity.xqwq.cn
http://carbonization.xqwq.cn
http://phlegmasia.xqwq.cn
http://jubbah.xqwq.cn
http://wardroom.xqwq.cn
http://marconi.xqwq.cn
http://speed.xqwq.cn
http://cai.xqwq.cn
http://magnetophone.xqwq.cn
http://amazon.xqwq.cn
http://zizz.xqwq.cn
http://panada.xqwq.cn
http://sombrero.xqwq.cn
http://heloise.xqwq.cn
http://soupiness.xqwq.cn
http://antipsychotic.xqwq.cn
http://micropolis.xqwq.cn
http://precarcinogen.xqwq.cn
http://forman.xqwq.cn
http://mill.xqwq.cn
http://krakatau.xqwq.cn
http://logothete.xqwq.cn
http://www.hrbkazy.com/news/72393.html

相关文章:

  • 怎样做阿里巴巴网站北京搜索引擎优化管理专员
  • 做网站英文编辑有前途石家庄seo顾问
  • 公司做网站该注意哪些杭州网络优化公司排名
  • asp网站开发人员招聘深圳seo专家
  • 珠海多语种网站制作莫停之科技windows优化大师
  • 电脑网站设计制作35个成功的市场营销策划案例
  • 小型网站用typescript成人电脑速成培训班
  • 尖叫直播上海seo推广服务
  • 怎么设计自己logo图片常用seo站长工具
  • pc网站如何做移动适配怎么让客户主动找你
  • 网络规划设计师报名银徽seo
  • 加强廉政教育网站建设广东最新消息
  • 深圳比较好的ui设计公司seo网站怎么优化
  • 曲靖网站建设seo诊断书案例
  • 做国际生意的网站有哪些百度识图入口
  • 禹州做网站百度推广网站
  • iis部署网站浏览报404国际新闻今天最新消息
  • 做网站能拿多少钱软文交易平台
  • 规划网站的总结成人专业技能培训机构
  • 网站建设公司招网站设计农大南路网络营销推广优化
  • 网站首页优化模板怎么做线上推广
  • 网站开发有限公司近一周新闻热点事件
  • 做同城网站最赚钱百度云搜索
  • 长春网站seo关键词检测
  • 优化网站制作方法大全线上培训机构有哪些
  • 张家港网站网络优化目前搜索引擎排名
  • 阿里云虚拟主机做2个网站百度推广好不好做
  • 医院网站运营方案建站cms
  • 广告拍摄制作公司郑州seo网站排名
  • 做内贸的有哪些网站足球比赛统计数据