sometimes the function rem does not return the exact solution. For example rem(135.01,100) does not return 35.01 but it returns 35.009999999999991 (visible when format is changed to long). Can anyone tel me why !? and how to fix it !?

1 件のコメント

Stephen23
Stephen23 2017 年 2 月 27 日
編集済み: Stephen23 2017 年 2 月 27 日
The decimal value 135.01 cannot be stored exactly in binary, just in the same way that 1/3 cannot be written exactly using decimal digits. Have a look at it in more detail:
>> fprintf('%.30f\n',135.01)
135.009999999999990000000000000000
Read Steven Lord's answer, it tells you what is going on.

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

 採用された回答

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMathematics についてさらに検索

タグ

質問済み:

2017 年 2 月 27 日

編集済み:

2017 年 2 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by