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