matlab初学者想高手请教个问题哈:x03^2=(x02*sin(x2)-x04*sin(x1+x2)-x05)^2+(x02*cos(x2)-x04*cos(x1+x2))^2;sin(x1)*(sqrt(x01^2+x02^2-2*x01*x02*cos(x2)))=sin(x2)*x01 其中x1,x2是未知数,其余是已知数,我是这么考虑的syms x1 x
来源:学生作业帮助网 编辑:六六作业网 时间:2024/12/23 19:07:16
matlab初学者想高手请教个问题哈:x03^2=(x02*sin(x2)-x04*sin(x1+x2)-x05)^2+(x02*cos(x2)-x04*cos(x1+x2))^2;sin(x1)*(sqrt(x01^2+x02^2-2*x01*x02*cos(x2)))=sin(x2)*x01 其中x1,x2是未知数,其余是已知数,我是这么考虑的syms x1 x
matlab初学者想高手请教个问题哈:
x03^2=(x02*sin(x2)-x04*sin(x1+x2)-x05)^2+(x02*cos(x2)-x04*cos(x1+x2))^2;sin(x1)*(sqrt(x01^2+x02^2-2*x01*x02*cos(x2)))=sin(x2)*x01 其中x1,x2是未知数,其余是已知数,我是这么考虑的syms x1 x2;
x01=27;
x02=44.01;
x03=17.16;
x04=25.65;
x05=6;
f1=sym('sin(x1)*(sqrt(x01^2+x02^2-2*x01*x02*cos(x2)))=sin(x2)*x01');
f2=sym('x03^2=(x02*sin(x2)-x04*sin(x1+x2)-x05)^2+(x02*cos(x2)-x04*cos(x1+x2))^2');
[X,Y]=solve(f1,f2,'x1,x2')
matlab初学者想高手请教个问题哈:x03^2=(x02*sin(x2)-x04*sin(x1+x2)-x05)^2+(x02*cos(x2)-x04*cos(x1+x2))^2;sin(x1)*(sqrt(x01^2+x02^2-2*x01*x02*cos(x2)))=sin(x2)*x01 其中x1,x2是未知数,其余是已知数,我是这么考虑的syms x1 x
syms x1 x2;
x01=27;
x02=44.01;
x03=17.16;
x04=25.65;
x05=6;
f1 = sin(x1)*(sqrt(x01^2+x02^2-2*x01*x02*cos(x2))) - sin(x2)*x01 ;
f2 = (x02*sin(x2)-x04*sin(x1+x2)-x05)^2+(x02*cos(x2)-x04*cos(x1+x2))^2 - x03^2 ;
s = solve(f1,f2);
X = s.x1 % x1的值
Y = s.x2 % x2的值