Member of the support class.
c = int64(a)
Converts the input elements to 64-bit signed integers. LabVIEW MathScript does not support operations on int64 data types.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| c | Returns the 64-bit signed integer part of a. If an element in a is greater than 2^63-1, the corresponding element in c is 2^63-1. c is a matrix of the same size as a. |
A = [23456.333, 123456.4, -8383838]
C = int64(A)