<< int32 | integers type | int8 >> |
Y = int64(X) |
a matrix of double, single or integers.
a matrix of 64-bit integer.
int64 converts value to 64-bit integer type.
The value is rounded to the nearest int64 value on conversion. A value that is above or below the range for an int64 class is mapped to one of the endpoints of the range [-9223372036854775808,9223372036854775807].
A = [1 12 -120 127 -9e24 9e23]
B = int64(A)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET