Largest number in Matlab

39 ビュー (過去 30 日間)
Yung Xi
Yung Xi 2019 年 10 月 24 日
回答済み: Steven Lord 2019 年 10 月 24 日
hi,
what is the largest un-signed integer in Matlab for my client?
thank you.

回答 (3 件)

Marcel Kreuzberg
Marcel Kreuzberg 2019 年 10 月 24 日
max uint16 = 2^16-1
max int8 = 2^7-1
  1 件のコメント
Yung Xi
Yung Xi 2019 年 10 月 24 日
what is that calculated i.e. exact integer?

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


Marcel Kreuzberg
Marcel Kreuzberg 2019 年 10 月 24 日
65535
127

Steven Lord
Steven Lord 2019 年 10 月 24 日
When you say "largest integer" do you mean the largest value you can store in any of the integer data types or the largest integer value you can store in any of the built-in data types?
If you're using Symbolic Math Toolbox you can create numbers even larger than you can create in double precision.
two = sym(2)
q = two^10000
isAlways(q > realmax) % true

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by