版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、-精品文档-第一部分: 1、安装MATLAB软件,应用demo命令了解主要功能,熟悉基本功能,会用help命令。 AB 和2、用MATLAB语句输入矩阵1?4j2?3j3?2j4?1j4312?4j24?1j?3j3?2j?11243BA? ,?12434j2j2?3j4?1j?13?12431?4?3?2j1j3j2?4j?4?4A(5,6)?5命令将得出什么结果?矩阵,如果给出 前面给出的是 解: A=1 2 3 4;4 3 2 1;2 3 4 1;3 2 4 1 B=1+4j 2+3j 3+2j 4+1j;4+1j 3+2j 2+3j 1+4j;2+3j 3+2j 4+1j 1+4j;3
2、+2j 2+3j 4+1j 1+4j A = 1 2 3 4 4 3 2 1 2 3 4 1 3 2 4 1 B = 1.0000 + 4.0000i 2.0000 + 3.0000i 3.0000 + 2.0000i 4.0000 + 1.0000i 4.0000 + 1.0000i 3.0000 + 2.0000i 2.0000 + 3.0000i 1.0000 + 4.0000i 2.0000 + 3.0000i 3.0000 + 2.0000i 4.0000 + 1.0000i 1.0000 + 4.0000i 3.0000 + 2.0000i 2.0000 + 3.0000i 4.0
3、000 + 1.0000i 1.0000 + 4.0000i A(5,6)=5 A = 1 2 3 4 0 0 4 3 2 1 0 0 2 3 4 1 0 0 3 2 4 1 0 0 0 0 0 0 0 5 AB矩MATLAB,试给出相应的3、假设已知矩阵命令,将其全部偶数行提取出来,赋给Amagic(8)?A矩阵,用上述命令检验一下结果是不是正确。命令生成阵,用 解: A=magic(8) A = 64 2 3 61 60 6 7 57 9 55 54 12 13 51 50 16 17 47 46 20 21 43 42 24 40 26 27 37 36 30 31 33 32 34 3
4、5 29 28 38 39 25 41 23 22 44 45 19 18 48 49 15 14 52 53 11 10 56 8 58 59 5 4 62 63 1 B=A(2:2:end, :) B = 9 55 54 12 13 51 50 16 40 26 27 37 36 30 31 33 41 23 22 44 45 19 18 48 8 58 59 5 4 62 63 1 63?i626322?8?S?2?1?2?4,、用数值方法可以求出4试不采用循环的形式求0?i出和式的数值解。由于数值方法是采用double形式进行计算的,难以保证有效位数字,所以结果不一定精确。试采用运算的
5、方法求该和式的精确值。 解: syms S S=sum(sym(2).0:63) S = 18446744073709551615 5、选择合适的步距绘制出下面的图形。 ?)?t)?(,t?tsin(tan)tan(sin11(t)/sin(1t?,)。 ,其中)1(,其中 ;2解: t=-1:0.001:1;y=sin(1./t);plot(t,y) )1(1 0.80.60.40.20-0.2-0.4-0.6-0.8-110.80.2-0.200.40.6-1-0.8-0.6-0.4 (2) t=-pi:0.001:pi;y=sin(tan(t)-tan(sin(t);plot(t,y)
6、1 0.80.60.40.20-0.2-0.4-0.6-0.8-14231-4-3-2-10 11?),y?(z?fx 6的三维图和三视图。、试绘制出二元函数2222y?)x?1(y?)x?1( :解 x,y=meshgrid(-2:.1:2);z=1./(sqrt(1-x).2+y.2)+1./(sqrt(1+x).2+y.2); surf(x,y,z),shading flat 1100-1-1-2-2 7、试求出如下极限。 122)?cos(xy1?xy xxlim)?(39limlimx。 )(1; (3 ;(2) 22y22x?1xy?1e)y(x?0x?x?0x?0?y0?y解:
7、(1) syms x;f=(3x+9x)(1/x);limit(f,x,inf) ans = 9 (2) syms x y;f=x*y/(x*y+1)(0.5)-1);limit(limit(f,x,0),y,0) ans = 2 (3) syms x y;f=(1-cos(x2+y2)/(x2+y2)*exp(x2+y2);limit(limit(f,x,0),y,0) ans = 0 tlncosx?2?ydyd8、已知参数方程,试求出和。 ? ?3?/t2xdttsincost?y?xd? 解: syms t; x=log(cos(t); y=cos(t)-t*sin(t); diff(
8、y,t)/diff(x,t) ans = (cos(t)*(2*sin(t) + t*cos(t)/sin(t) f=diff(y,t,2)/diff(x,t,2);subs(f,t,sym(pi/3) ans = 3/8 - (pi*3(1/2)/24 222f?x?ff?xy2t?2?tex,y)?df(,试求9、假设 22yy?xy?x?0解: syms x y t f=int(exp(-t2),t,0,x*y); x/y*diff(f,x,2)-2*diff(diff(f,x),y)+diff(f,y,2) ans = (2*x2*y2)/exp(x2*y2) - (2*x3*y)/e
9、xp(x2*y2) - 2/exp(x2*y2) 10、试求出下面的极限。 ?1111lim? (1); ? 2222?14?16?1(22n)?1?n?1111?(limn?)?)2(。 2222?n?n?n2?n3n?n?解: (1) syms k n;limit( symsum(1/(2*k)2-1),k,1,n),n,inf) ans = 1/2 (2) syms k n limit(n*symsum(1/(n2+k*pi),k,1,n),n,inf) ans = 1 11、试求出以下的曲线积分。 22?sdx?y)(l)tcost(sint)y?at?tx?a(cost?sin ,为
10、曲线, (1),l?)2?t?(0。 3y3y22222?)dy2y?(xy?xe?dyx(?e)xlcy?b?ax )2,其中为正向上半椭圆。( l解: (1) syms a t; x=a*(cos(t)+t*sin(t); y=a*(sin(t)-t*cos(t); f=x2+y2; S=int(f*sqrt(diff(x,t)2+diff(y,t)2),t,0,2*pi) S = 2*pi2*(2*pi2 + 1)*(a2)(3/2) (2) syms a t; x=a*(cos(t)+t*sin(t); y=a*(sin(t)-t*cos(t); f=x2+y2; S=int(f*sq
11、rt(diff(x,t)2+diff(y,t)2),t,0,2*pi) S = 2*pi2*(2*pi2 + 1)*(a2)(3/2) syms x y a b c t; x=c*cos(t)/a; y=c*sin(t)/b; P=y*x3+exp(y); Q=x*y3+x*exp(y)-2*y; ds=diff(x,t);diff(y,t); S=int(P Q*ds,t,0,pi) S = -(2*c*(15*b4 - 2*c4)/(15*a*b4) 432?1aaaa?234bb1bb?A?243?1cccc的行列式,并以最简的形式显示 12、求出Vandermonde矩阵?243d1d
12、dd?2431eeee?结果。 解: syms a b c d e; A=vander(a b c d e) A = a4, a3, a2, a, 1 b4, b3, b2, b, 1 c4, c3, c2, c, 1 d4, d3, d2, d, 1 e4, e3, e2, e, 1 det(A),simplify(ans) ans = a4*b3*c2*d - a4*b3*c2*e - a4*b3*c*d2 + a4*b3*c*e2 + a4*b3*d2*e - a4*b3*d*e2 - a4*b2*c3*d + a4*b2*c3*e + a4*b2*c*d3 - a4*b2*c*e3 -
13、 a4*b2*d3*e + a4*b2*d*e3 + a4*b*c3*d2 - a4*b*c3*e2 - a4*b*c2*d3 + a4*b*c2*e3 + a4*b*d3*e2 - a4*b*d2*e3 - a4*c3*d2*e + a4*c3*d*e2 + a4*c2*d3*e - a4*c2*d*e3 - a4*c*d3*e2 + a4*c*d2*e3 - a3*b4*c2*d + a3*b4*c2*e + a3*b4*c*d2 - a3*b4*c*e2 - a3*b4*d2*e + a3*b4*d*e2 + a3*b2*c4*d - a3*b2*c4*e - a3*b2*c*d4 +
14、a3*b2*c*e4 + a3*b2*d4*e - a3*b2*d*e4 - a3*b*c4*d2 + a3*b*c4*e2 + a3*b*c2*d4 - a3*b*c2*e4 - a3*b*d4*e2 + a3*b*d2*e4 + a3*c4*d2*e - a3*c4*d*e2 - a3*c2*d4*e + a3*c2*d*e4 + a3*c*d4*e2 - a3*c*d2*e4 + a2*b4*c3*d - a2*b4*c3*e - a2*b4*c*d3 + a2*b4*c*e3 + a2*b4*d3*e - a2*b4*d*e3 - a2*b3*c4*d + a2*b3*c4*e + a
15、2*b3*c*d4 - a2*b3*c*e4 - a2*b3*d4*e + a2*b3*d*e4 + a2*b*c4*d3 - a2*b*c4*e3 - a2*b*c3*d4 + a2*b*c3*e4 + a2*b*d4*e3 - a2*b*d3*e4 - a2*c4*d3*e + a2*c4*d*e3 + a2*c3*d4*e - a2*c3*d*e4 - a2*c*d4*e3 + a2*c*d3*e4 - a*b4*c3*d2 + a*b4*c3*e2 + a*b4*c2*d3 - a*b4*c2*e3 - a*b4*d3*e2 + a*b4*d2*e3 + a*b3*c4*d2 - a*
16、b3*c4*e2 - a*b3*c2*d4 + a*b3*c2*e4 + a*b3*d4*e2 - a*b3*d2*e4 - a*b2*c4*d3 + a*b2*c4*e3 + a*b2*c3*d4 - a*b2*c3*e4 - a*b2*d4*e3 + a*b2*d3*e4 + a*c4*d3*e2 - a*c4*d2*e3 - a*c3*d4*e2 + a*c3*d2*e4 + a*c2*d4*e3 - a*c2*d3*e4 + b4*c3*d2*e - b4*c3*d*e2 - b4*c2*d3*e + b4*c2*d*e3 + - b3*c2*d4*e + b3*c4*d*e2 + b
17、3*c4*d2*e - b4*c*d2*e3 - b4*c*d3*e2 b3*c2*d*e4 - b3*c*d4*e2 + b3*c*d2*e4 + b2*c4*d3*e - b2*c4*d*e3 - b2*c3*d4*e + b2*c3*d*e4 + b2*c*d4*e3 - b2*c*d3*e4 - b*c4*d3*e2 + b*c4*d2*e3 + b*c3*d4*e2 - b*c3*d2*e4 - b*c2*d4*e3 + b*c2*d3*e4 ans = (a - b)*(a - c)*(a - d)*(b - c)*(a - e)*(b - d)*(b - e)*(c - d)*(
18、c - e)*(d - e) ?20.5?0.50.5?0.50.5?0?1.5A?、试对矩阵变换,并得出变换矩阵。 13进行Jordan?0.5?4.520.5?21?2?2?解: A=-2,0.5,-0.5,0.5;0,-1.5,0.5,-0.5;2,0.5,-4.5,0.5;2,1,-2,-2; V J=jordan(sym(A) V = 0, 1/2, 1/2, -1/4 0, 0, 1/2, 1 1/4, 1/2, 1/2, -1/4 1/4, 1/2, 1, -1/4 J = -4, 0, 0, 0 0, -2, 1, 0 0, 0, -2, 1 0, 0, 0, -2 14、试用
19、数值方法和解析方法求取下面的Sylvester方程,并验证得出的结果。 ?6?4035?21?1?3?2144212142?XX?9?2?2?1?637?6365 ?2?19601013?4?4011?36?406340? :解 数值方法: A=3,-6,-4,0,5;1,4,2,-2,4;-6,3,-6,7,3;-13,10,0,-11,0;0,4,0,3,4; B=3,-2,1; -2,-9,2; -2,-1,9; C=-2,1,-1; 4,1,2; 5,-6,1; 6,-4,-4; -6,6,-3; X=lyap(A,B,C) X = -4.056896419147292 -14.512
20、782077381612 1.565310728709521 0.035557507600191 25.074277773001164 -2.740806952628550 9.488645270988460 25.932327650327640 -4.417733416157587 2.696922296480646 21.645009214025027 -2.885084137489283 7.722872389418908 31.909960533088562 -3.763408710201076 norm(A*X+X*B+C) ans = 3.435635978567079e-13 解
21、析方法: X=lyap(sym(A),B,C) X = -434641749950/107136516451,-4664546747350/321409549353, 503105815912/321409549353 3809507498/107136516451, 8059112319373/321409549353, -880921527508/321409549353 1016580400173/107136516451, 8334897743767/321409549353,-1419901706449/321409549353 288938859984/107136516451,
22、6956912657222/321409549353, -927293592476/321409549353 827401644798/107136516451,10256166034813/321409549353,-1209595497577/321409549353 A*X+X*B+C ans = 0, 0, 0 0, 0, 0 0, 0, 0 0, 0, 0 0, 0, 0 AtAt2AteAAtsintA)eesin(。15、假设已知矩阵,如下,试求出, 0.5?1.5?4.50?0.50.5?0.5?4A? ?1.5?2.51.51?0?1?1?3?解: A=-4.5,0,0.5,
23、-1.5;-0.5,-4,0.5,-0.5;1.5,1,-2.5,1.5;0,-1,-1,-3; A=sym(A),syms t;expm(A*t) A = -9/2, 0, 1/2, -3/2 -1/2, -4, 1/2, -1/2 3/2, 1, -5/2, 3/2 0, -1, -1, -3 ans = exp(-3*t)/2 + exp(-5*t)/2 - (t*exp(-3*t)/2 + (t2*exp(-3*t)/2, exp(-5*t)/2 - exp(-3*t)/2 + t*exp(-3*t), (t*exp(-3*t)/2 + (t2*exp(-3*t)/2, exp(-5*
24、t)/2 - exp(-3*t)/2 - (t*exp(-3*t)/2 + (t2*exp(-3*t)/2 exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2, exp(-3*t)/2 + exp(-5*t)/2, (t*exp(-3*t)/2, exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2 exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2, exp(-3*t)/2 - exp(-5*t)/2, exp(-3*t) + (t*exp(-3*t)/2, exp(-3*t)/2 - exp
25、(-5*t)/2 + (t*exp(-3*t)/2 -(t2*exp(-3*t)/2, -t*exp(-3*t), -(t*exp(-3*t)*(t + 2)/2, -(exp(-3*t)*(t2 - 2)/2 A=sym(A);syms t sin(A*t) ans = -sin(9*t)/2), 0, sin(t/2), -sin(3*t)/2) -sin(t/2), -sin(4*t), sin(t/2), -sin(t/2) sin(3*t)/2), sin(t), -sin(5*t)/2), sin(3*t)/2) 0, -sin(t), -sin(t), -sin(3*t) A=s
26、ym(A);syms t expm(A*t)*sin(A2*expm(A*t)*t) ans = sin(t*(3*exp(-3*t)/2 - (25*exp(-5*t)/2 + (9*t*exp(-3*t)/2)*(t*exp(-3*t)/2 + (t2*exp(-3*t)/2) + sin(t*(17*exp(-3*t)/2 + (25*exp(-5*t)/2 - (21*t*exp(-3*t)/2 + (9*t2*exp(-3*t)/2)*(exp(-3*t)/2 + exp(-5*t)/2 - (t*exp(-3*t)/2 + (t2*exp(-3*t)/2) + + exp(-5*t
27、)/2 - (9*t2*exp(-3*t)/2)*(exp(-3*t)/2 + 6*t*exp(-3*t) - sin(t*(exp(-3*t) (t*exp(-3*t)/2 - (t2*exp(-3*t)/2) + sin(t*(25*exp(-5*t)/2 - (15*exp(-3*t)/2 + (9*t*exp(-3*t)/2)*(exp(-5*t)/2 - exp(-3*t)/2 + t*exp(-3*t), sin(t*(9*exp(-3*t)/2 - (25*exp(-5*t)/2)*(t*exp(-3*t)/2 + (t2*exp(-3*t)/2) + sin(t*(25*exp
28、(-5*t)/2 - (21*exp(-3*t)/2 + 9*t*exp(-3*t)*(exp(-3*t)/2 + exp(-5*t)/2 - (t*exp(-3*t)/2 + (t2*exp(-3*t)/2) - sin(t*(6*exp(-3*t) - 9*t*exp(-3*t)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2 - (t2*exp(-3*t)/2) + sin(t*(9*exp(-3*t)/2 + (25*exp(-5*t)/2)*(exp(-5*t)/2 - exp(-3*t)/2 + t*exp(-3*t), sin(t*(6*e
29、xp(-3*t) - (13*t*exp(-3*t)/2 - (11*t2*exp(-3*t)/2 + (11*t*exp(-3*t)*(t + 2)/2)*(t*exp(-3*t)/2 + (t2*exp(-3*t)/2) - sin(t*(3*exp(-3*t) - (19*t*exp(-3*t)/2 - (5*t2*exp(-3*t)/2 + (5*t*exp(-3*t)*(t + 2)/2)*(exp(-5*t)/2 - exp(-3*t)/2 + t*exp(-3*t) - sin(t*(5*exp(-3*t) + 5*t*exp(-3*t) - (t2*exp(-3*t)/2 -
30、4*t*exp(-3*t)*(t + 2)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2 - (t2*exp(-3*t)/2) - sin(t*(2*exp(-3*t) - (21*t*exp(-3*t)/2 - (21*t2*exp(-3*t)/2 + 6*t*exp(-3*t)*(t + 2)*(exp(-3*t)/2 + exp(-5*t)/2 - (t*exp(-3*t)/2 + (t2*exp(-3*t)/2), sin(t*(25*exp(-5*t)/2 - (25*exp(-3*t)/2 + (9*t*exp(-3*t)/2 + (5*t
31、2*exp(-3*t)/2 - (5*exp(-3*t)*(t2 - 2)/2)*(exp(-5*t)/2 - exp(-3*t)/2 + t*exp(-3*t) + sin(t*(t2*exp(-3*t)/2 - 6*t*exp(-3*t) + 4*exp(-3*t)*(t2 - 2)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2 - (t2*exp(-3*t)/2) + sin(t*(25*exp(-3*t)/2 - (25*exp(-5*t)/2 + (9*t*exp(-3*t)/2 - (11*t2*exp(-3*t)/2 + (11*exp(
32、-3*t)*(t2 - 2)/2)*(t*exp(-3*t)/2 + (t2*exp(-3*t)/2) - sin(t*(25*exp(-3*t)/2 - (25*exp(-5*t)/2 + (21*t*exp(-3*t)/2 - (21*t2*exp(-3*t)/2 + 6*exp(-3*t)*(t2 - 2)*(exp(-3*t)/2 + exp(-5*t)/2 - (t*exp(-3*t)/2 + (t2*exp(-3*t)/2) sin(t*(17*exp(-3*t)/2 + (25*exp(-5*t)/2 - (21*t*exp(-3*t)/2 + (9*t2*exp(-3*t)/2
33、)*(exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2) - sin(t*(exp(-3*t) - 6*t*exp(-3*t) + (9*t2*exp(-3*t)/2)*(exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2) + sin(t*(25*exp(-5*t)/2 - (15*exp(-3*t)/2 + (9*t*exp(-3*t)/2)*(exp(-3*t)/2 + exp(-5*t)/2) + (t*exp(-3*t)*sin(t*(3*exp(-3*t)/2 - (25*exp(-5*t)/2 + (9*t*e
34、xp(-3*t)/2)/2, sin(t*(6*exp(-3*t) - 9*t*exp(-3*t)*(exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2) + sin(t*(9*exp(-3*t)/2 + (25*exp(-5*t)/2)*(exp(-3*t)/2 + exp(-5*t)/2) + sin(t*(25*exp(-5*t)/2 - (21*exp(-3*t)/2 + 9*t*exp(-3*t)*(exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2) + (t*exp(-3*t)*sin(t*(9*exp(-3*t
35、)/2 - (25*exp(-5*t)/2)/2, sin(t*(5*exp(-3*t) + 5*t*exp(-3*t) - (t2*exp(-3*t)/2 - 4*t*exp(-3*t)*(t + 2)*(exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2) - sin(t*(3*exp(-3*t) - (19*t*exp(-3*t)/2 - (5*t2*exp(-3*t)/2 + (5*t*exp(-3*t)*(t + 2)/2)*(exp(-3*t)/2 + exp(-5*t)/2) - sin(t*(2*exp(-3*t) - (21*t*exp(-3
36、*t)/2 - (21*t2*exp(-3*t)/2 + 6*t*exp(-3*t)*(t + 2)*(exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2) + (t*exp(-3*t)*sin(t*(6*exp(-3*t) - (13*t*exp(-3*t)/2 - (11*t2*exp(-3*t)/2 + (11*t*exp(-3*t)*(t + 2)/2)/2, sin(t*(25*exp(-5*t)/2 - (25*exp(-3*t)/2 + (9*t*exp(-3*t)/2 + (5*t2*exp(-3*t)/2 - (5*exp(-3*t)*(t2
37、 - 2)/2)*(exp(-3*t)/2 + exp(-5*t)/2) - sin(t*(25*exp(-3*t)/2 - (25*exp(-5*t)/2 + (21*t*exp(-3*t)/2 - (21*t2*exp(-3*t)/2 + 6*exp(-3*t)*(t2 - 2)*(exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2) - sin(t*(t2*exp(-3*t)/2 - 6*t*exp(-3*t) + 4*exp(-3*t)*(t2 - 2)*(exp(-5*t)/2 - exp(-3*t)/2 + (t*exp(-3*t)/2) + (t
38、*sin(t*(25*exp(-3*t)/2 - (25*exp(-5*t)/2 + (9*t*exp(-3*t)/2 - (11*t2*exp(-3*t)/2 + (11*exp(-3*t)*(t2 - 2)/2)*exp(-3*t)/2 sin(t*(17*exp(-3*t)/2 + (25*exp(-5*t)/2 - (21*t*exp(-3*t)/2 + (9*t2*exp(-3*t)/2)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2) - sin(t*(exp(-3*t) - 6*t*exp(-3*t) + (9*t2*exp(-3*t)/
39、2)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2) + sin(t*(25*exp(-5*t)/2 - (15*exp(-3*t)/2 + (9*t*exp(-3*t)/2)*(exp(-3*t)/2 - exp(-5*t)/2) + sin(t*(3*exp(-3*t)/2 - (25*exp(-5*t)/2 + (9*t*exp(-3*t)/2)*(exp(-3*t) + (t*exp(-3*t)/2), sin(t*(6*exp(-3*t) - 9*t*exp(-3*t)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(
40、-3*t)/2) + sin(t*(9*exp(-3*t)/2 + (25*exp(-5*t)/2)*(exp(-3*t)/2 - exp(-5*t)/2) + sin(t*(9*exp(-3*t)/2 - (25*exp(-5*t)/2)*(exp(-3*t) + (t*exp(-3*t)/2) + sin(t*(25*exp(-5*t)/2 - (21*exp(-3*t)/2 + 9*t*exp(-3*t)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2), sin(t*(5*exp(-3*t) + 5*t*exp(-3*t) - (t2*exp(-
41、3*t)/2 - 4*t*exp(-3*t)*(t + 2)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2) - sin(t*(3*exp(-3*t) - (19*t*exp(-3*t)/2 - (5*t2*exp(-3*t)/2 + (5*t*exp(-3*t)*(t + 2)/2)*(exp(-3*t)/2 - exp(-5*t)/2) - sin(t*(2*exp(-3*t) - (21*t*exp(-3*t)/2 - (21*t2*exp(-3*t)/2 + 6*t*exp(-3*t)*(t + 2)*(exp(-3*t)/2 - exp(-5
42、*t)/2 + (t*exp(-3*t)/2) + sin(t*(6*exp(-3*t) - (13*t*exp(-3*t)/2 - (11*t2*exp(-3*t)/2 + (11*t*exp(-3*t)*(t + 2)/2)*(exp(-3*t) + (t*exp(-3*t)/2), sin(t*(25*exp(-5*t)/2 - (25*exp(-3*t)/2 + (9*t*exp(-3*t)/2 + (5*t2*exp(-3*t)/2 - (5*exp(-3*t)*(t2 - 2)/2)*(exp(-3*t)/2 - exp(-5*t)/2) - sin(t*(25*exp(-3*t)
43、/2 - (25*exp(-5*t)/2 + (21*t*exp(-3*t)/2 - (21*t2*exp(-3*t)/2 + 6*exp(-3*t)*(t2 - 2)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2) + sin(t*(25*exp(-3*t)/2 - (25*exp(-5*t)/2 + (9*t*exp(-3*t)/2 - (11*t2*exp(-3*t)/2 + (11*exp(-3*t)*(t2 - 2)/2)*(exp(-3*t) + (t*exp(-3*t)/2) - sin(t*(t2*exp(-3*t)/2 - 6*t*e
44、xp(-3*t) + 4*exp(-3*t)*(t2 - 2)*(exp(-3*t)/2 - exp(-5*t)/2 + (t*exp(-3*t)/2) (sin(t*(exp(-3*t) - 6*t*exp(-3*t) + (9*t2*exp(-3*t)/2)*exp(-3*t)*(t2 - 2)/2 - (t2*sin(t*(17*exp(-3*t)/2 + (25*exp(-5*t)/2 - (21*t*exp(-3*t)/2 + (9*t2*exp(-3*t)/2)*exp(-3*t)/2 - t*exp(-3*t)*sin(t*(25*exp(-5*t)/2 - (15*exp(-3
45、*t)/2 + (9*t*exp(-3*t)/2) - (t*exp(-3*t)*sin(t*(3*exp(-3*t)/2 - (25*exp(-5*t)/2 + (9*t*exp(-3*t)/2)*(t + 2)/2, - (sin(t*(6*exp(-3*t) - 9*t*exp(-3*t)*exp(-3*t)*(t2 - 2)/2 - (t2*exp(-3*t)*sin(t*(25*exp(-5*t)/2 - (21*exp(-3*t)/2 + 9*t*exp(-3*t)/2 - t*exp(-3*t)*sin(t*(9*exp(-3*t)/2 + (25*exp(-5*t)/2) -
46、(t*exp(-3*t)*sin(t*(9*exp(-3*t)/2 - (25*exp(-5*t)/2)*(t + 2)/2, (t2*exp(-3*t)*sin(t*(2*exp(-3*t) - (21*t*exp(-3*t)/2 - (21*t2*exp(-3*t)/2 + 6*t*exp(-3*t)*(t + 2)/2 - (exp(-3*t)*sin(t*(5*exp(-3*t) + 5*t*exp(-3*t) - (t2*exp(-3*t)/2 - 4*t*exp(-3*t)*(t + 2)*(t2 - 2)/2 + t*exp(-3*t)*sin(t*(3*exp(-3*t) -
47、(19*t*exp(-3*t)/2 - (5*t2*exp(-3*t)/2 + (5*t*exp(-3*t)*(t + 2)/2) - (t*exp(-3*t)*sin(t*(6*exp(-3*t) - (13*t*exp(-3*t)/2 - (11*t2*exp(-3*t)/2 + (11*t*exp(-3*t)*(t + 2)/2)*(t + 2)/2, (t2*sin(t*(25*exp(-3*t)/2 - (25*exp(-5*t)/2 + (21*t*exp(-3*t)/2 - (21*t2*exp(-3*t)/2 + 6*exp(-3*t)*(t2 - 2)*exp(-3*t)/2 - t*sin(t*(25*exp(-5*t)/2 - (25*exp(-3*t)/2 + (9*t*exp(-3*t)/2 + (5*t2*exp(-3*t)/2 - (5*exp(-3*t)*(t2 - 2)/2)*exp(-3*t) + (exp(-3*t)*sin(t*(t2*exp(-3*t)/2 - 6*t*exp(-3*t) + 4*exp(-3*t)*(t2 - 2)*(t2 - 2)/2 - (t*sin(
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2026年秋新教材译林版九年级上册英语Units 5~8共4套单元测试卷(含答案)
- 福建省龙岩市长汀县2025-2026学年六年级上学期期末语文试题(文字版含答案)
- 2026年中学音体美课题分层教学教师招聘考试笔试试题(含答案)
- 2026年烟草设备质检岗烟草公司招聘考试笔试试题(含答案)
- 心理干预对白内障患者围手术期血压稳定性的效果观察
- 夏秋之交居家调养方案
- 住宅小区智能化管理系统
- 2026 年晚期肿瘤安宁疗护护理个案分享
- 2026 年扁桃体术后大出血急救护理个案
- 2026年秋季高中开学第一课 新学期学习规划课件
- 建筑施工起重吊装安全管理培训
- 中远海运集团2026招聘笔试
- APQC跨行业流程分类框架 (8.0 版)( 中文版-2026年4月)
- 城市轨道交通ATC系统课件:基于轨道电路的ATC系统
- 2026年政治理论知识要点及模拟试题集
- 铁路学生面试培训课件
- 心脏骤停的院内急救流程
- 江南大学附属医院招聘笔试真题2024
- GB/T 1883.1-2025往复式内燃机词汇第1部分:发动机设计和运行术语
- 宜宾社工面试题目及答案
- 医疗机构消防安全管理规范措施
评论
0/150
提交评论