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