MATLAB: How to write out homogeneous equation

homogeneous equationmatrix

Would like to ask is that any way to write out homogeneous equation for the following:
Let
T = [0.2 0.17 0.25 0.2 0.1; 0.25 0.2 0.1 0.3 0; 0.05 0.2 0.1 0.15 0.1; 0.1 0.28 0.4 0.2 0; 0.4 0.15 0.15 0.8]
x = [x1; x2; x3; x4; x5]
Tx = x
Write out the five equations in this system. Then, collect terms in your equations to get a homogenous linear system, and write out the five new equations.
Thank you!

Best Answer

x=sym('x',[5 1])
T = [0.2 0.17 0.25 0.2 0.1; 0.25 0.2 0.1 0.3 0; 0.05 0.2 0.1 0.15 0.1; 0.1 0.28 0.4 0.2 0; 0.4 0.15 0.15 0.8]
eq=T*x==x