How to determine fraction as an output?

1 次查看(过去 30 天)
I used the '[v,d]=eig(A)' function, but it prints 72.00000 instead of 72. If it is a fraction (eg: 1/3 which will produce 0.3333), then its fine. Are there any specific function to avoid this?

回答(1 个)

Walter Roberson
Walter Roberson 2018-5-19
There is probably some round-off error so that the 72.00000 that you are seeing is not exactly 72 . You can subtract 72 from the output to see how large the difference is.
  2 个评论
Mohammad Ezzad Hamdan
i have calculated and the answer should be 72 only, not 72.000001 for instance.
Walter Roberson
Walter Roberson 2018-5-19
Eigenvalue computation involve finding the roots of polynomials. For 3x3 matrices, floating point roundoff difficulties is typical, and for 4x4 matrices, floating point roundoff is almost certain, and for larger matrices the only way to avoid it would be to use a detailed knowledge of the computation and of floating point representation to work backwards to create one of the rare matrices that did not have floating point roundoff problems.
If you need exact values then you need to switch to the Symbolic Toolbox, which can give you exact values up to 4x4 matrices. Just be prepared for typical eigenvalues to be expressions at least 4000 characters long.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Linear Algebra 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by