Trying to find non-zero solution.
조회 수: 11 (최근 30일)
이전 댓글 표시
Hello,
I am trying to solve a determinant of 4x4 matrix and getting answer equal to zero. Can anyone help me to find the other non-zero values for this equation. (means other periodic values for this function or other way to get non-zero approximations). I 'll be very thankfull if anyone can take a look at the attached file.
댓글 수: 0
채택된 답변
John D'Errico
2019년 2월 25일
Which solution do you wish to find?
F = matlabFunction(det(X));
fplot(F,[0 .1])
It appears there might be 2 or 3 solutions. Or perhaps 2 or 3 trillion of them. Or why stop at any finite number?
vpasolve(det(X),.06)
ans =
0.01931385561569357106926176060344
vpasolve(det(X),.07)
ans =
0.069995054245726529446727985175491
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!