Largest number in Matlab

回答(3 个)

Marcel Kreuzberg
Marcel Kreuzberg 2019-10-24

0 个投票

max uint16 = 2^16-1
max int8 = 2^7-1
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

类别

帮助中心File Exchange 中查找有关 Numeric Types 的更多信息

标签

提问:

2019-10-24

回答:

2019-10-24

Community Treasure Hunt

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

Start Hunting!

Translated by