Skip to content

Latest commit

 

History

History
50 lines (27 loc) · 441 Bytes

INTEGER.md

File metadata and controls

50 lines (27 loc) · 441 Bytes
  • Integers: 8, 16, 32, 64 signed and unsigned: scalar, vector, matrix 2D, N dimensions array supported.
>> intmax('int8')

ans =

  int8

   127

>> intmax('int16')

ans =

  int16

   32767

>> intmax('int32')

ans =

  int32

   2147483647

>> intmax('int64')

ans =

  int64

   9223372036854775807

Integer supports saturation:

>>  int8(200) + int8(60)

ans =

  int8

   127

Previous page