Question: Solving a Linear Matrix

I got a set of 8 variables and 8 equations, i need to solve them. I tried using "fsolve" but there are too many variables and too many equations. I thought I can try it using linearalgebra.
 

These are my equations:
[[-0.1845180773 omega[1] + 0.1319036378 omega[8] + 0.05261443942 omega[10]],

  [-0.1117119920 omega[1] + 0.6713650798 omega[8] - 0.1616530877 omega[10]],

  [-0.2215585629 omega[1] - 0.1340828122 omega[7] + 0.3556413750 omega[6]],

  [-0.1341372551 omega[1] + 0.1806842536 omega[7] + 0.3514530016 omega[6]],
 
[-0.1157243690 omega[3] - 0.2085322185 omega[4] + 0.1901737754 omega[5] + 0.1340828122 omega[7]],
 
[-0.2228431745 omega[3] + 0.1715060170 omega[4] + 0.2320214110 omega[5] - 0.1806842536 omega[7]],

  [-0.05261443942 omega[10] - 0.04173799706 omega[8] - 0.4809713453],

  [0.1616530877 omega[10] - 0.2124386726 omega[8] + 0.07617837717]]
 

I turned them into a matrix using
M:=GenerateMatrix(VSeparado,[omega[1],omega[3],omega[4],omega[5],omega[6],omega[7],omega[8],omega[10]]);

i got the matrix, but

how do i solve it?
 

Please Wait...