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

大连电子商务网站建设美国疫情最新数据消息

大连电子商务网站建设,美国疫情最新数据消息,网上免费咨询律师电话,前端开发主要做什么小木虫的各位童鞋们,我现在调试matlab程序遇到一个问题。一个很复杂的关于角度theta的数值积分,我调用自带的quadl函数,结果出现虚数。我后来又根据变步长的simpson算法编了一个数值积分程序,结果还是有虚数,而且我的积…

小木虫的各位童鞋们,我现在调试matlab程序遇到一个问题。一个很复杂的关于角度theta的数值积分,我调用自带的quadl函数,结果出现虚数。我后来又根据变步长的simpson算法编了一个数值积分程序,结果还是有虚数,而且我的积分程序和quadl算出的结果还有一些误差。积分函数包含了很多三角函数,还有e的指数函数在里面,但是积分过程中并无傅里叶变换等可以带来虚数的过程,不知道虚数是怎么来的。我把积分函数曲线都画出来了,波动比较大,但是作为一个面积,怎么会出现虚数呢?我把我的八个积分函数表达式以及各自的函数曲线贴出来,希望大神们帮我看看,给点意见。论文卡在这里,一直得不到解决。

%========function group of theta=====================

function F1=Ff1(theta)

%======== basic formula=============================

% TO identify whether the rotating axis is inside the circle

if rrat<=0

rm=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp((theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp((theta-theta0)*tan(phi)));

else

rm=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp(-(theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp(-(theta-theta0)*tan(phi)));

end

a=sin(theta0)/sin(theta)-rm;

F1=2*cos(theta)*(((R^2-a^2)^(1/2))*(0.125*R^2*a-0.25*a^3-0.5*a*rm^2+(R^2-a^2)*rm)...

+(0.5*pi-asin(a/R))*(0.125*R^4+0.5*rm^2*R^2));

end

function F2=Ff2(theta)

%========basic formula=============================

% TO identify whether the rotating axis is inside the circle

if rrat<=0

rm=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp((theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp((theta-theta0)*tan(phi)));

else

rm=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp(-(theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp(-(theta-theta0)*tan(phi)));

end

d=sin(betaS+thetah)/sin(betaS+theta)*exp((thetah-theta0)*tan(phi))-rm;

F2=2*cos(theta)*(((R^2-d^2)^(1/2))*(0.125*R^2*d-0.25*d^3-0.5*d*rm^2+(R^2-d^2)*rm)...

+(0.5*pi-asin(d/R))*(0.125*R^4+0.5*rm^2*R^2));

end

function G1=Gf1(theta)

%========= basic formula=============================

% TO identify whether the rotating axis is inside the circle

if rrat<=0

rm=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp((theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp((theta-theta0)*tan(phi)));

else

rm=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp(-(theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp(-(theta-theta0)*tan(phi)));

end

a=sin(theta0)/sin(theta)-rm;

G1=(rm^2*(R-a)+rm*(R^2-a^2)+(1/3)*(R^3-a^3))*cos(theta);

end

function G2=Gf2(theta)

%=========basic formula=============================

% TO identify whether the rotating axis is inside the circle

if rrat<=0

rm=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp((theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp((theta-theta0)*tan(phi)));

else

rm=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp(-(theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp(-(theta-theta0)*tan(phi)));

end

d=sin(betaS+thetah)/sin(betaS+theta)*exp((thetah-theta0)*tan(phi))-rm;

G2=(rm^2*(R-d)+rm*(R^2-d^2)+(1/3)*(R^3-d^3))*cos(theta);

end

function E1=Ef1(theta)

%=========basic formula=============================

% TO identify whether the rotating axis is inside the circle

if rrat<=0

rm=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp((theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp((theta-theta0)*tan(phi)));

else

rm=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp(-(theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp(-(theta-theta0)*tan(phi)));

end

a=sin(theta0)/sin(theta)-rm;

E1=(cos(theta)/(sin(theta))^3)*(R^2-a^2)^(1/2);

end

function E2=Ef2(theta)

%========= basic formula=============================

% TO identify whether the rotating axis is inside the circle

if rrat<=0

rm=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp((theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp((theta-theta0)*tan(phi)));

else

rm=0.5*(exp((theta-theta0)*tan(phi))+rrat*exp(-(theta-theta0)*tan(phi)));

R=0.5*(exp((theta-theta0)*tan(phi))-rrat*exp(-(theta-theta0)*tan(phi)));

end

d=sin(betaS+thetah)/sin(betaS+theta)*exp((thetah-theta0)*tan(phi))-rm;

E2=cos(theta+betaS)/((sin(theta+betaS))^3)*(R^2-d^2)^(1/2);

end

function H1=Hf1(theta)

%===========basic formula=============================

H1=cos(theta)/(sin(theta))^3;

end

function H2=Hf2(theta)

%========= basic formula=============================

H2=cos(theta+betaS)/(sin(theta+betaS))^3;

end

==========computational parameters==================

d2r=pi/180;

theta0=20*d2r;thetah=100*d2r;rrat=0.6;brat=0.5;

betaS=45*d2r; phi=30*d2r;

A1=sin(betaS+thetah)/sin(theta0)*exp((thetah-theta0)*tan(phi));

B1=cos(betaS);

C1=sin(betaS);

thetaB=acot((A1-B1)/C1);

%===========numerical integration for W and D==============

Wd1=quadl(@Ff1,theta0,thetaB);

Wd2=quadl(@Ff2,thetaB,thetah);

Wd=Wd1+Wd2;

Wp1=quadl(@Gf1,theta0,thetaB);

Wp2=quadl(@Gf2,thetaB,thetah);

Wp=Wp1+Wp2;

Kd1=quadl(@Ef1,theta0,thetaB);

Kd2=quadl(@Ef2,thetaB,thetah);

Dd=-2*cot(phi)*(sin(theta0))^2*Kd1...

-2*cot(phi)*exp(2*(thetah-theta0)*tan(phi))*(sin(thetah+betaS))^2*Kd2;

Kp1=quadl(@Hf1,theta0,thetaB);

Kp2=quadl(@Hf2,thetaB,thetah);

Dp=-cot(phi)*(sin(theta0))^2*Kp1...

-cot(phi)*exp(2*(thetah-theta0)*tan(phi))*(sin(thetah+betaS))^2*Kp2;

disp('[Wd1,Wd2,Wp1,Wp2,Kd1,Kd2,Kp1,Kp2]=');

disp([Wd1,Wd2,Wp1,Wp2,Kd1,Kd2,Kp1,Kp2]');

t-5642162-1-pid-2

八个被积函数曲线.jpg


文章转载自:
http://dinncooffence.bkqw.cn
http://dinncotribromoethyl.bkqw.cn
http://dinncoommatophore.bkqw.cn
http://dinncoaluminothermy.bkqw.cn
http://dinncojilin.bkqw.cn
http://dinncoscorodite.bkqw.cn
http://dinncomacedoine.bkqw.cn
http://dinncosignor.bkqw.cn
http://dinncoforesaddle.bkqw.cn
http://dinncoarthritis.bkqw.cn
http://dinncopastel.bkqw.cn
http://dinncocounteractant.bkqw.cn
http://dinncoseveral.bkqw.cn
http://dinncoliveborn.bkqw.cn
http://dinncoornithoid.bkqw.cn
http://dinncobrolga.bkqw.cn
http://dinncosputter.bkqw.cn
http://dinncohemorrhoids.bkqw.cn
http://dinncopastorage.bkqw.cn
http://dinncochittagong.bkqw.cn
http://dinncooxbow.bkqw.cn
http://dinncounhang.bkqw.cn
http://dinncophilander.bkqw.cn
http://dinnconarcosynthesis.bkqw.cn
http://dinncogrobian.bkqw.cn
http://dinncothrashing.bkqw.cn
http://dinncowesleyan.bkqw.cn
http://dinncosanguineous.bkqw.cn
http://dinncolinkboy.bkqw.cn
http://dinncoantisex.bkqw.cn
http://dinncookazaki.bkqw.cn
http://dinncoprincipalship.bkqw.cn
http://dinncoelectrogasdynamics.bkqw.cn
http://dinncohistosol.bkqw.cn
http://dinncocarpsucker.bkqw.cn
http://dinncomeropia.bkqw.cn
http://dinncoingvaeonic.bkqw.cn
http://dinncoelectrooculogram.bkqw.cn
http://dinncogalvanism.bkqw.cn
http://dinncolongeur.bkqw.cn
http://dinncoholobenthic.bkqw.cn
http://dinncospatial.bkqw.cn
http://dinncopietist.bkqw.cn
http://dinncoroadable.bkqw.cn
http://dinncoadvantageously.bkqw.cn
http://dinncogitgo.bkqw.cn
http://dinncotid.bkqw.cn
http://dinncounijugate.bkqw.cn
http://dinncoabsurdly.bkqw.cn
http://dinncomantuan.bkqw.cn
http://dinncopaletot.bkqw.cn
http://dinncohusband.bkqw.cn
http://dinncounsectarian.bkqw.cn
http://dinncooch.bkqw.cn
http://dinncogrogshop.bkqw.cn
http://dinncovolcanize.bkqw.cn
http://dinncocrustless.bkqw.cn
http://dinncocryptographist.bkqw.cn
http://dinncowx.bkqw.cn
http://dinncodiphenoxylate.bkqw.cn
http://dinncoentomoplily.bkqw.cn
http://dinncoratten.bkqw.cn
http://dinncomillage.bkqw.cn
http://dinncolengthways.bkqw.cn
http://dinncomodernism.bkqw.cn
http://dinncounmutilated.bkqw.cn
http://dinncostrath.bkqw.cn
http://dinncobrushability.bkqw.cn
http://dinncomastitis.bkqw.cn
http://dinncoconglutinate.bkqw.cn
http://dinncoinadmissibility.bkqw.cn
http://dinncosexism.bkqw.cn
http://dinncobreakfront.bkqw.cn
http://dinncopulseless.bkqw.cn
http://dinncofiguration.bkqw.cn
http://dinncosongsmith.bkqw.cn
http://dinncosava.bkqw.cn
http://dinncofeeze.bkqw.cn
http://dinncobumpiness.bkqw.cn
http://dinncotimework.bkqw.cn
http://dinncowitchcraft.bkqw.cn
http://dinncotraumatologist.bkqw.cn
http://dinncothermalgesia.bkqw.cn
http://dinncoencrinite.bkqw.cn
http://dinncocommunication.bkqw.cn
http://dinncobrix.bkqw.cn
http://dinncogynecopathy.bkqw.cn
http://dinncosecessionist.bkqw.cn
http://dinncoillicitly.bkqw.cn
http://dinncounstring.bkqw.cn
http://dinncoucla.bkqw.cn
http://dinnconeb.bkqw.cn
http://dinncopantheress.bkqw.cn
http://dinncomicrocyte.bkqw.cn
http://dinnconavaid.bkqw.cn
http://dinncoinfected.bkqw.cn
http://dinncokaleyard.bkqw.cn
http://dinncocornetcy.bkqw.cn
http://dinncogranddam.bkqw.cn
http://dinncoequable.bkqw.cn
http://www.dinnco.com/news/124347.html

相关文章:

  • 当今做哪些网站能致富如何进行网站宣传推广
  • 深圳网站制作的公司推广引流图片
  • 怎么评价一个网站设计做的好坏整合营销案例举例说明
  • 日本dns网站大全拼多多标题关键词优化方法
  • 钦州网站制作网站设计公司多少钱
  • 安徽省工程招标信息网seo入门培训学校
  • 建设网站细节网页制作的软件有哪些
  • 和建设银行类似的网站响应式网站建设
  • 个人网站怎样申请icp路由器优化大师
  • 做网站文案百家联盟推广部电话多少
  • 长春网站建设方案详细千锋教育官网
  • 自己在家怎么做网站服务器在线生成网页网站
  • 软件开发公司排行榜前十名山西免费网站关键词优化排名
  • 用.net做网站好_还是用php网站建设及推广优化
  • 做类似美团的网站免费的html网站
  • 宁波做网站排名的公司有哪些怎么申请网址
  • 长春做网站团队杭州搜索引擎排名
  • 武汉大学人民医院光谷院区企业网站seo排名
  • 苏州学习网站建设站长工具seo
  • 菠菜网站怎么做推广比较好填写电话的广告
  • 怎样自己建一个网站女教师网课入06654侵录屏
  • 织梦sms网站里面怎么更换广告图片seo刷点击软件
  • 网站建设名片seo引擎优化
  • 进出口贸易公司取名大全东莞搜索seo网站关键词优化
  • 平湖网站制作企业关键词排名优化网址
  • 怎样用一台电脑做代理 让别的电脑通过代理上几个网站网页制作代码模板
  • 做网站怎么改关键词优化一个网站需要多少钱
  • 怎么用自助网站拉新十大推广app平台
  • 沭阳奥体小区做网站产品市场调研怎么做
  • 开网站做私彩赚钱吗网页设计个人主页