solve para sistema de ecuaciones con variables simolicas
Publicado por Novato (1 intervención) el 09/04/2017 21:34:36
Tengo que resolver este problema, pero me sale el siguiente error, alguien me podria ayudar?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
>> vpo'==Tt(:,:,F)*vpp'
ans =
x1 == a4*sin(theta1) - d3*cos(theta1) + xp1*cos(theta1)
x2 == xp1*sin(theta1) - d3*sin(theta1) - a4*cos(theta1)
x3 == d4 - d2
1 == 1
>> var
var =
[ theta1, d2, d3, d4]
>> solve([vpo'==Tt(:,:,F)*vpp'],[var])
Warning: Cannot find explicit solution.
> In solve (line 316)
ans =
theta1: [0x1 sym]
d2: [0x1 sym]
d3: [0x1 sym]
d4: [0x1 sym]
Valora esta pregunta
0