早教吧作业答案频道 -->英语-->
MATLAB中怎么解出0.5*b*R*R*x+b*R*R*r*w/4*k*exp(-x)=4.3064e+005中的x其中就x是未知数其他的都已知,pi=3.14159;R=45;r=40;k=1;w=20;b=1.06;0.5*b*R*R*x+b*R*R*r*w*exp(-x)/4*k-4.3064e+005=0运行之后Error:Theexpressiontotheleftoft
题目详情
MATLAB中怎么解出 0.5*b*R*R*x+b*R*R*r*w/4*k*exp(-x)=4.3064e+005中的x
其中就x是未知数其他的都已知,
pi=3.14159;
R=45;
r=40;
k=1;
w=20;
b=1.06;
0.5*b*R*R*x+b*R*R*r*w*exp(-x)/4*k-4.3064e+005=0
运行之后Error:The expression to the left of the equals sign is not a valid target for an assignment.
其中就x是未知数其他的都已知,
pi=3.14159;
R=45;
r=40;
k=1;
w=20;
b=1.06;
0.5*b*R*R*x+b*R*R*r*w*exp(-x)/4*k-4.3064e+005=0
运行之后Error:The expression to the left of the equals sign is not a valid target for an assignment.
▼优质解答
答案和解析
你没用过matlab吧?
将函数中的字母用相应的数字替换之后得到如下的表达
x=solve('0.5*1.06*45*45*x+1.06*45*45*40*20*exp(-x)/4*1-4.3064e+005')
x=simplify(x)
x=401.24854414162590263219194036804
将函数中的字母用相应的数字替换之后得到如下的表达
x=solve('0.5*1.06*45*45*x+1.06*45*45*40*20*exp(-x)/4*1-4.3064e+005')
x=simplify(x)
x=401.24854414162590263219194036804
看了 MATLAB中怎么解出0.5...的网友还看了以下:
matlab 求解二元非线性方程组本人初次接触MATLAB,望大虾赐教!r=r0*((tsa-t) 2020-05-16 …
matlaB中str1='exp(-(x-4)^2-(y-4)^2)+exp(-(x+4)^2-( 2020-05-16 …
matlab输出结果精度问题!急!clear; A=[4.7000000 24.5 24.1 10 2020-06-27 …
VB中的EXP函数exp(1),结果为2.718282exp(2),结果为7.389056如果ex 2020-07-23 …
matlab高手进dsolve('D4y+4*a^4*y=0','x')ans=C2*(1/exp 2020-07-23 …
ode45求多元微分方程functiondw=I(t,w)m=w(1)n=w(2)h=w(3)V= 2020-07-23 …
%%计算核矩阵fori=1:m;forj=1:m,K(i,j)=exp(-norm(A(i,:)- 2020-07-23 …
MATLAB中怎么解出0.5*b*R*R*x+b*R*R*r*w/4*k*exp(-x)=4.30 2020-07-23 …
求指数级数和问题a1+a2+a3+.a1=1-exp(x);a2=[1-1/2*exp(x)]*[ 2020-07-23 …
带指数的级数求和问题a1=1-exp{x};a2=(1-1/2exp{x})(1-exp{x/2} 2020-07-23 …