Clear Filters
Clear Filters

Info

This question is closed. Reopen it to edit or answer.

Solve these 2 simultaneous equations to get normal number

1 view (last 30 days)
>> syms x y equ1 = 2760*sind(200)+x*sind(107.5)+y*sind(307.615) == 0; equ2 = 2760*cosd(200)+x*cosd(107.5)+y*cosd(307.615) == 0; sol = solve([equ1,equ2],[x,y]); >> xsol = double(sol.x)
xsol =
7.6492e+03
>> ysol = double(sol.y)
ysol =
8.0178e+03

Answers (0)

This question is closed.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!