![]() | Download Help (Windows Only) |
Owning Class: support
Requires: MathScript RT Module
c = int32(a)
Converts the input elements to 32-bit signed integers.
Name | Description |
---|---|
a | Specifies a numeric scalar, vector, or matrix. |
Name | Description |
---|---|
c | Returns the elements of a as 32-bit signed integers. c is a scalar, vector, or matrix of the same size as a. If a is a complex number, this function converts the real and imaginary parts of the number separately and then returns a complex number that consists of those parts. To return the 32-bit signed representation of a when the input is complex, use the real function to extract the real part of a, then use the int32 function to convert the real part. |
If an element in a is greater than 2^31-1, the corresponding element in c is 2^31-1. If an element in a is less than -2^31, the corresponding element in c is -2^31.
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | Yes |
Supported on RT targets | Yes |
Suitable for bounded execution times on RT | Yes |
A = [34.333, 123456.4, -38]
C = int32(A)
Helpful
Not Helpful