关于方程求解问题。

16 views (last 30 days)
现有向量M3
M3 =
0.31945904000790307305 - 0.005046959987684505082*y - 815179.0752415504373*x
0.10784031501425366875 - 0.0017037136599679645953*y - 275181.83794505179724*x
0
13321839167179.401168*x + 82478.551333332184197*y - 5220690.3795702961347
1.0
如何将第一行和第二行提取出来使其均等于零并求得未知数x和y的精确解

Accepted Answer

百家乐网站|网址【TL9704.com】
syms x y
M3 =[0.31945904000790307305 - 0.005046959987684505082*y - 815179.0752415504373*x
0.10784031501425366875 - 0.0017037136599679645953*y - 275181.83794505179724*x
0
13321839167179.401168*x + 82478.551333332184197*y - 5220690.3795702961347
1.0];
[Sx,Sy]=solve(M3(1)==0,M3(2)==0,x,y)

More Answers (0)

Categories

Find more on Symbolic Math Toolbox 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!