필터 지우기
필터 지우기

intmax in 64 bits

조회 수: 1 (최근 30일)
Sergio Zlotnik
Sergio Zlotnik 2017년 6월 30일
댓글: Steven Lord 2017년 6월 30일
Hi all, Why the answer is not 9223372036854775807 ?
< M A T L A B (R) >
Copyright 1984-2016 The MathWorks, Inc.
R2016a (9.0.0.341360) 64-bit (glnxa64)
February 11, 2016
To get started, type one of these: helpwin, helpdesk, or demo.
For product information, visit www.mathworks.com.
Academic License
>> intmax
ans =
2147483647
  댓글 수: 2
Stephen23
Stephen23 2017년 6월 30일
The intmax help states " intmax('int32') is the same as intmax with no arguments."
Steven Lord
Steven Lord 2017년 6월 30일
I understand why you're confused. Whether MATLAB is a 32-bit or a 64-bit application does not change what intmax returns. You can ask for intmax of any of the eight integer types regardless of whether you're running a 32-bit version of MATLAB or a 64-bit version of MATLAB. As Stephen and Guillaume have said, intmax is equivalent to intmax('int32').

댓글을 달려면 로그인하십시오.

채택된 답변

Guillaume
Guillaume 2017년 6월 30일
편집: Guillaume 2017년 6월 30일
Because, as clearly written in the documentation, intmax with no arguments is the same as
intmax('int32')
If you want 9223372036854775807, then you need to write
intmax('int64')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by