matlab 三角函数组解这个方程组:最后要求出x(1)和x(2),l1*cosd(thed1)+l2*cosd(x(1))-l4*0.222-l3*cosd(x(2))=0l1*sind(thed1)+l2*sind(x(1))-l4*0.975-l3*sind(x(2))=0已知条件:l1=49.287;l2=223.1828;l3=100;l4=225.61;t=0:0.1:3;th

来源:学生作业帮助网 编辑:作业帮 时间:2024/05/07 00:11:55
matlab 三角函数组解这个方程组:最后要求出x(1)和x(2),l1*cosd(thed1)+l2*cosd(x(1))-l4*0.222-l3*cosd(x(2))=0l1*sind(thed1)+l2*sind(x(1))-l4*0.975-l3*sind(x(2))=0已知条件:l1=49.287;l2=223.1828;l3=100;l4=225.61;t=0:0.1:3;th

matlab 三角函数组解这个方程组:最后要求出x(1)和x(2),l1*cosd(thed1)+l2*cosd(x(1))-l4*0.222-l3*cosd(x(2))=0l1*sind(thed1)+l2*sind(x(1))-l4*0.975-l3*sind(x(2))=0已知条件:l1=49.287;l2=223.1828;l3=100;l4=225.61;t=0:0.1:3;th
matlab 三角函数组
解这个方程组:最后要求出x(1)和x(2),
l1*cosd(thed1)+l2*cosd(x(1))-l4*0.222-l3*cosd(x(2))=0
l1*sind(thed1)+l2*sind(x(1))-l4*0.975-l3*sind(x(2))=0
已知条件:l1=49.287;
l2=223.1828;
l3=100;
l4=225.61;
t=0:0.1:3;
thed1=600*t;

matlab 三角函数组解这个方程组:最后要求出x(1)和x(2),l1*cosd(thed1)+l2*cosd(x(1))-l4*0.222-l3*cosd(x(2))=0l1*sind(thed1)+l2*sind(x(1))-l4*0.975-l3*sind(x(2))=0已知条件:l1=49.287;l2=223.1828;l3=100;l4=225.61;t=0:0.1:3;th
matlab代码如下:
syms t
l1=49.287;
l2=223.1828;
l3=100;
l4=225.61;
thed1=600*t;
eq1='l1*cosd(thed1)+l2*cosd(x1)-l4*0.222-l3*cosd(x2)=0';
eq2='l1*sind(thed1)+l2*sind(x1)-l4*0.975-l3*sind(x2)=0';
solve(eq1,eq2,'x1','x2')
解出来的结果如下:
Warning:Explicit solution could not be found.
> In solve at 98
In Untitled4 at 9
ans =
[ empty sym ]
说明这个方程比较复杂,matlab无法解出其符号解(解析解)形式.
把t=0:0.1:3,甚至令t=3,都没有能解出其数值解.

不会

sind,cosd是什么?