MATLAB Solving equations problem

后端 未结 5 1201
感情败类
感情败类 2021-01-25 17:32

I want to solve these equations using MATLAB and I am sure there is a non zero solution. The equations are:

0.7071*x            + 0.7071*z = x 
  -0.5*x +         


        
5条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-25 17:53

    Friends use MATLAB command rref(A) for Ax=B.... It will give a upper triangular Matrix. Then u can calculate non-trivial solutions easily... But keep in mind that if rref(A)=I (as in your case) then non-trivial solutions do not exist. BEST OF LUCK

提交回复
热议问题