doubleからsi​ngleのキャスト精​度の向上方法?

4 visualizaciones (últimos 30 días)
nguyen congkien
nguyen congkien el 29 de Mayo de 2018
Editada: nguyen congkien el 30 de Mayo de 2018
添付画像みたいのキャスト処理をSimulinkモデルで実装してみましたが、 8.333333333333333(double)⇒8.3333330154419(single)になる理由は何でしょうか。 2進数⇔10進数の変換結果が約8.333333313465118になりますが、Simulink上でもこの結果ぐらいになり、浮動小数点のキャスト精度向上するために何か設定・コンフィギュレーションがありますでしょうか。(Matlab R2025Sp1)

Respuestas (1)

Takafumi
Takafumi el 29 de Mayo de 2018
浮動小数点の精度を確認するのに、epsコマンドがありまして、 single 型の精度は代替小数点7桁あたりまでです。
eps('single')
ans =
single
1.1920929e-07
  1 comentario
nguyen congkien
nguyen congkien el 30 de Mayo de 2018
Editada: nguyen congkien el 30 de Mayo de 2018
ご回答ありがとうございます。
知りたかったのが、
・どうしてその結果になるのか。
・どうやって結果の制度を上げるのか。
です。

Iniciar sesión para comentar.

Categorías

Más información sobre Simulink en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!