Largest number in Matlab
조회 수: 58 (최근 30일)
이전 댓글 표시
hi,
what is the largest un-signed integer in Matlab for my client?
thank you.
답변 (3개)
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
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!