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