フィルターのクリア

How to calculate the largest real number in IEEE double and single precision representation.

1 回表示 (過去 30 日間)
William
William 2013 年 5 月 14 日
How do you calculate (in your own way) the largest real number in IEEE double and single precision representations wihtout using realmax('single') and realmax('double')? thank you!
  2 件のコメント
Matt Kindig
Matt Kindig 2013 年 5 月 15 日
Wikipedia gives a pretty good overview of how to do so in its article:
I happened to have been reading this article just today.
James Tursa
James Tursa 2013 年 5 月 15 日
Using just floating point operations? Or allowing for bit manipulation and type casting?

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

回答 (1 件)

Jan
Jan 2013 年 5 月 15 日
編集済み: Jan 2013 年 5 月 15 日
Using the bit-patterns defined e.g. here http://docs.oracle.com/cd/E19957-01/806-3568/ncg_math.html and a typecast should be sufficient. Because IEEE754 is a convention, there is nothing wrong with using the bit-patterns defined in this convention directly.
[EDITED] What about pow2(2 - eps, 1023)? Does this reply the correct answer?
  2 件のコメント
José-Luis
José-Luis 2013 年 5 月 15 日
編集済み: José-Luis 2013 年 5 月 15 日
It should give the correct answer since that is the formula invoked by realmax. Without using eps:
pow2(1 + (1 - 2^-52),1023) == realmax
Or even without pow2:
(1 + (1 - 2^-52))*2^1023 == realmax
Speedwise it might not be optimal but William seemed reluctant to use built-in functions.
Jan
Jan 2013 年 5 月 15 日
編集済み: Jan 2013 年 5 月 15 日
@Jose-Luis: Thanks for explaining this. I do not have access to Matlab currently, otherwise I had taken a look into edit realmax.

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

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by