system 3 eq with 3 unknown w. cos&sin
Show older comments
syms x y r
eq1=((1+cos(2))*x)+((1-cos(2))*y)+((sin(2))*r)==-741.6
eq2=((1+cos(140))*x)+((1-cos(140))*y)+((sin(140))*r)==1768.2
eq3=((1+cos(260))*x)+((1-cos(260))*y)+((sin(260))*r)==-2643.4
result=solve(eq1,eq2,eq3)
vpa(result.x)
vpa(result.y)
vpa(result.r)
what am i doing wrong?
aren't i supposed to get x=-414.722, y=143.579, r=2507.3
1 Comment
darova
on 30 Apr 2020
I got this result
ans =
17200.42119561459346581104722787
ans =
1229.4313261175983169768030796407
ans =
-13774.564011183238331971257084028
Is it wrong?
Accepted Answer
More Answers (0)
Categories
Find more on Assumptions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!