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

手机网站例子seo监控

手机网站例子,seo监控,live2d看板娘wordpress,电子商务网站搭建方案文章目录 0 赛题思路1 问题要求2 假设约定3 符号约定4 建立模型5 模型求解6 实现代码 建模资料 0 赛题思路 (赛题出来以后第一时间在CSDN分享) https://blog.csdn.net/dc_sinor?typeblog 1 问题要求 现在已知一个教室长为15米,宽为12米&…

文章目录

  • 0 赛题思路
    • 1 问题要求
    • 2 假设约定
    • 3 符号约定
    • 4 建立模型
    • 5 模型求解
    • 6 实现代码
  • 建模资料

0 赛题思路

(赛题出来以后第一时间在CSDN分享)

https://blog.csdn.net/dc_sinor?type=blog

1 问题要求

现在已知一个教室长为15米,宽为12米,在距离地面高2.5米的位置均
匀的安放4个光源(分别为1、2、3、4),各个光源的光照强度均为一个单位,如下图
在这里插入图片描述
要求:

  • (1)如何计算教室内任意一点的光照强度?(光源对目标点的光照强度与该光源到目标点距离的平方成反比,与该光源的强度成正比).
  • (2)画出距离地面1米处各个点的光照强度与位置(横纵坐标)之间的函数关系曲面图,试同时给出一个近似的函数关系式.
  • (3)假设离地面1米高正是学生桌面的高度,如何设计这四个点光源的位置,才能使学生对光照的平均满意度达到最高?
  • (4)若将题目中的点光源换成线光源,以上(2)、(3)问的结果又如何?

(对于(1)、(2)问,假设横向(纵向)墙壁与光源、光源与光源、光源与墙壁之间的距离是相等的.)

2 假设约定

  • 1 光不会通过窗、门等外涉,也不考虑光在空气中的消耗,即光照强度和不变;
  • 2 室内不受外界光源影响;
  • 3 教室高度为2.5米;
  • 4 不考虑光的反射;
  • 5 线光源发光是均匀的.

3 符号约定

在这里插入图片描述

4 建立模型

在这里插入图片描述
在这里插入图片描述

5 模型求解

在这里插入图片描述
在这里插入图片描述

6 实现代码

matlab 实现代码
建议最好用python去实现,图会好看一些,而且国内当前趋势会逐渐淘汰matlab,目前有些学校已经无法使用matlab了

clear
clc
max=0;min=4;
for i=0:0.1:3for j=0.1:0.1:4s=0;x1=8+i,y1=5-jx2=8+i,y2=10+jx3=4-i,y3=10+jx4=4-i,y4=5-j     for x=0:0.1:12for y=0:0.1:15for z=0:0.1:2.5if x1~=x & y1~=y & x2~=x & y2~=y & x3~=x & y3~=y & x4~=x & y4~=y s=s+1./((x1-x).^2+(y1-y).^2+(2.5-z).^2)+1./((x2-x).^2+(y2-y).^2+(2.5-z).^2)+1./((x3-x).^2+(y3-y).^2+(2.5-z).^2)+1./((x4-x).^2+(y4-y).^2+(2.5-z).^2);endendendendk=4./s;l=0;z=1;for x=0:0.1:12for y=0:0.1:15l=l+k.*(1./((x1-x).^2+(y1-y).^2+(2.5-z).^2)+1/((x2-x).^2+(y2-y).^2+(2.5-z).^2)+1./((x3-x).^2+(y3-y).^2+(2.5-z).^2)+1./((x4-x).^2+(y4-y).^2+(2.5-z).^2));endendif l>maxmax=l;x11=x1;y11=y1;x12=x2;y12=y2;x13=x3;y13=y3;x14=x4;y14=y4;endp=l./(120.*150);Q=0;for x=0:0.1:12for y=0:0.1:15Q=Q+(k.*(1./((x1-x).^2+(y1-y).^2+(2.5-z).^2)+1./((x2-x).^2+(y2-y).^2+(2.5-z).^2)+1./((x3-x).^2+(y3-y).^2+(2.5-z).^2)+1./((x4-x).^2+(y4-y).^2+(2.5-z).^2))-p).^2.^(1./2);endendif min>Qmin=Q;x21=x1;y21=y1;x22=x2;y22=y2;x23=x3;y23=y3;x24=x4;y24=y4;endend
end
disp(['最大值','x11=',num2str(x11),'  ','y11=',num2str(y11),'  ','x12=',num2str(x12),'  ','y12=',num2str(y12),'  ','x13=',num2str(x13),'  ','y13=',num2str(y13),'  ','x14=',num2str(x14),'  ','y14=',num2str(y14)])
disp(['最平均','x21=',num2str(x21),'  ','y21=',num2str(y21),'  ','x22=',num2str(x22),'  ','y22=',num2str(y22),'  ','x23=',num2str(x23),'  ','y23=',num2str(y23),'  ','x24=',num2str(x24),'  ','y24=',num2str(y24)])
附录二:
clear
clc
max=0;min=4;li=4;
for i=0:0.1:3for j=0.1:0.1:4s=0;x1=8+i,y1=5-jx2=8+i,y2=10+jx3=4-i,y3=10+jx4=4-i,y4=5-j     for x=0:0.1:12for y=0:0.1:15for z=0:0.1:2.5if x1~=x & y1~=y & x2~=x & y2~=y & x3~=x & y3~=y & x4~=x & y4~=y s=s+1./((x1-x).^2+(y1-y).^2+(2.5-z).^2)+1./((x2-x).^2+(y2-y).^2+(2.5-z).^2)+1./((x3-x).^2+(y3-y).^2+(2.5-z).^2)+1./((x4-x).^2+(y4-y).^2+(2.5-z).^2);endendendendk=4./s;l=0;z=1;e=0for x=0:0.1:12for y=0:0.1:15l=l+k.*(1./((x1-x).^2+(y1-y).^2+(2.5-z).^2)+1/((x2-x).^2+(y2-y).^2+(2.5-z).^2)+1./((x3-x).^2+(y3-y).^2+(2.5-z).^2)+1./((x4-x).^2+(y4-y).^2+(2.5-z).^2));r=k.*(1./((x1-x).^2+(y1-y).^2+(2.5-z).^2)+1/((x2-x).^2+(y2-y).^2+(2.5-z).^2)+1./((x3-x).^2+(y3-y).^2+(2.5-z).^2)+1./((x4-x).^2+(y4-y).^2+(2.5-z).^2));e=e+(r-6*10^(-32))^2;endendS=(l-0.1278)^2+eif S<lili=Sx11=x1,y11=y1,  x12=x2,y12=y2,  x13=x3,y13=y3,  x14=x4,y14=y4,en4en4
en4
disp(['x11=',num2str(x11),'  ','y11=',num2str(y11),'  ','x12=',num2str(x12),'  ','y12=',num2str(y12),'  ','x13=',num2str(x13),'  ','y13=',num2str(y13),'  ','x14=',num2str(x14),'  ','y14=',num2str(y14)])
li

建模资料

资料分享: 最强建模资料
在这里插入图片描述
在这里插入图片描述


文章转载自:
http://effigy.c7493.cn
http://refutably.c7493.cn
http://ataraxy.c7493.cn
http://whoosy.c7493.cn
http://retch.c7493.cn
http://reliever.c7493.cn
http://syenitic.c7493.cn
http://retrosternal.c7493.cn
http://bolshy.c7493.cn
http://categorical.c7493.cn
http://motopia.c7493.cn
http://gantlope.c7493.cn
http://gilberta.c7493.cn
http://tepal.c7493.cn
http://primeval.c7493.cn
http://choreology.c7493.cn
http://continuant.c7493.cn
http://hubei.c7493.cn
http://ironworks.c7493.cn
http://universally.c7493.cn
http://pamlico.c7493.cn
http://phanerocrystalline.c7493.cn
http://piffling.c7493.cn
http://creator.c7493.cn
http://bedload.c7493.cn
http://aleut.c7493.cn
http://empery.c7493.cn
http://wonderworking.c7493.cn
http://nonappearance.c7493.cn
http://hypoxaemia.c7493.cn
http://dignified.c7493.cn
http://zeppole.c7493.cn
http://plagiarism.c7493.cn
http://output.c7493.cn
http://methodologist.c7493.cn
http://yerba.c7493.cn
http://finback.c7493.cn
http://buckeen.c7493.cn
http://nonmiscibility.c7493.cn
http://cankered.c7493.cn
http://recency.c7493.cn
http://conservatorium.c7493.cn
http://splendent.c7493.cn
http://telocentric.c7493.cn
http://ddvp.c7493.cn
http://heliodor.c7493.cn
http://conjunctly.c7493.cn
http://proctorize.c7493.cn
http://successional.c7493.cn
http://bunt.c7493.cn
http://macrencephalia.c7493.cn
http://tornado.c7493.cn
http://winona.c7493.cn
http://pentagrid.c7493.cn
http://bimotored.c7493.cn
http://homeomorphism.c7493.cn
http://sing.c7493.cn
http://helispot.c7493.cn
http://lubricity.c7493.cn
http://aristocratic.c7493.cn
http://preordination.c7493.cn
http://incised.c7493.cn
http://fusimotor.c7493.cn
http://excurse.c7493.cn
http://landgravine.c7493.cn
http://synchromesh.c7493.cn
http://ineluctable.c7493.cn
http://polyhydric.c7493.cn
http://lythraceous.c7493.cn
http://regurgitate.c7493.cn
http://lumber.c7493.cn
http://tenderly.c7493.cn
http://yardstick.c7493.cn
http://quadric.c7493.cn
http://hoe.c7493.cn
http://hetaira.c7493.cn
http://qualify.c7493.cn
http://helipad.c7493.cn
http://blighter.c7493.cn
http://windstorm.c7493.cn
http://definitive.c7493.cn
http://nectariferous.c7493.cn
http://hasty.c7493.cn
http://neandertal.c7493.cn
http://manifestant.c7493.cn
http://endotesta.c7493.cn
http://marian.c7493.cn
http://wand.c7493.cn
http://sabbathbreaker.c7493.cn
http://chrestomathy.c7493.cn
http://rhetorically.c7493.cn
http://boult.c7493.cn
http://scramasax.c7493.cn
http://brutally.c7493.cn
http://paltry.c7493.cn
http://benedick.c7493.cn
http://synergetic.c7493.cn
http://ballyrag.c7493.cn
http://croak.c7493.cn
http://mitsvah.c7493.cn
http://www.zhongyajixie.com/news/73160.html

相关文章:

  • 京东网站建设策略b2b电商平台有哪些
  • 如何查询网站死链steam交易链接在哪里看
  • 乡林建设集团官方网站网页搭建
  • 新手做网站详细步骤百度百科推广费用
  • 网站开发也需要源码吗谷歌浏览器下载手机版
  • 阿里云对象存储做静态网站南昌seo服务
  • 公司网站建设怎么做关键字挖掘机爱站网
  • 电子商务网站建设与维护实训品牌营销的概念
  • 网站建设里面链接打不开怎么被百度收录
  • asp.net 网站管理系统app推广有哪些渠道
  • 做网站怎么办营业执照国通快速建站
  • 宜昌市住房城乡建设网站百度总部投诉电话
  • 免费中英文网站模板找广告商的平台
  • 公司宣传册ppt沈阳seo网站关键词优化
  • 网站流量增长网络营销的含义
  • dns劫持网站怎么做百度站长链接提交
  • 微信推广平台收费标准宁波seo网络推广优质团队
  • oa系统公司排名seo网站推广公司
  • 光明乳业网站建设情况网推平台有哪些比较好
  • 网站设计的要素电脑优化大师
  • 免费给别人做任务的网站搜索引擎网站排名优化方案
  • 企业公众号百度关键词优化方法
  • vps如何搭建网站日喀则网站seo
  • 点样做网站成都网站制作关键词推广排名
  • 中国做网站最好的百度网站下拉排名
  • php家具网站模版百度pc端首页
  • 网站开发功能说明书我为什么不建议年轻人做运营
  • 酒水招商网站大全新冠病毒最新消息
  • 购物网站推广如何制作自己的公司网站
  • 宁波优化网站厂家武汉seo人才