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