フィルターのクリア

Does matlab supports rational number types?

9 ビュー (過去 30 日間)
Anver Hisham
Anver Hisham 2016 年 9 月 29 日
編集済み: Stephen23 2024 年 4 月 3 日
I see Matlab stores numbers in floating points [1], which causes round of errors!
For eg:
The above round off error is resulted, because 10^-5 is not a valid 64 bit floating point number in matlab.
However in *Mathematica*, numbers can be stored in rational format [2] (ie integer/integer format), which avoids any round off error for the same computations.
So my question is, will it be possible to avoid such round of errors in matlab?
[2]: https://reference.wolfram.com/language/tutorial/LinearAlgebraMatrixTypes.html
  2 件のコメント
Adam
Adam 2016 年 9 月 29 日
I think you need the Symbolic Maths toolbox to have handling for this.
Stephen23
Stephen23 2024 年 4 月 3 日
編集済み: Stephen23 2024 年 4 月 3 日
All binary floating point numbers are rational numbers.
Also note that the proposed solution just shifts the problem: how should those two integers be stored? Presumably they would be finite integers stored on your computer... which means that there will always be rational numbers that cannot be represented (unless you happen to have infinite memory installed on your laptop).
Using (finite) rational numbers (in the sense the OP proposed) does not completely avoid errors: there are many more irrational numbers than rational numbers, some of which are commonly used. For example, there is no way to exactly represent e.g. sqrt(2) or pi or e as ratios of finite integers. Any attempt to store those values numerically will always include some error.

サインインしてコメントする。

採用された回答

John D'Errico
John D'Errico 2016 年 9 月 29 日
MATLAB uses floating point numbers by default. This makes it more efficient to do things like work well on large scale linear algebra problems, but it introduces problems like this. There is no fractional integer class in MATLAB. (Well, there was one posted on the FEX that I recall, that worked with my own vpi.)
Yes, you can use the symbolic toolbox to do the kinds of things you want to do. But you then need to recognize that those computations will be quite a bit slower. You trade off speed for ultimate precision. And given the number of people who are never satisfied with the speed of their computers on any given problem, speed is important.
In the end, the real solution is to learn to use floating point arithmetic. That is a skill and sometimes an art. It is the gist of scores of numerical methods courses, teaching students how to do computations without falling under the wheels of a limited number of digits in their computations.
  4 件のコメント
Walter Roberson
Walter Roberson 2023 年 3 月 8 日
quite true, rationals can be useful. Unfortunately, there is no hardware support for rationals.
Omar Lakkis
Omar Lakkis 2024 年 4 月 3 日
編集済み: Omar Lakkis 2024 年 4 月 3 日
The power 5 is a distraction, in fact the example works with squares in the following form
0.01-(0.1)^2
and the reason is that the rational number 1/10 has the infinite (periodic) binary expansion: 0.000110011... This means that using 0.1 in a calculation, except in the simplest situation, will necessarily introduce rounding errors.
A commong misconception is that the smaller the numbers the harder are they to represent as floats, but this is not true. It is instructive to compare the above with the following (luckily exact) operation
0.00390625-(0.0625)^2

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by