Integers type int32 >>

int16


Converts to 16-bit signed integer.


Syntax


Y = int16(X)

Input argument


X

a matrix of double, single or integers.

Output argument


Y

a matrix of 16-bit integer.

Description


int16 converts value to 16-bit integer type.

The value is rounded to the nearest int16 value on conversion. A value that is above or below the range for an int16 class is mapped to one of the endpoints of the range [-32768, 32767].

Example


A = [1 -32769 -120 127 32767 32768]
B = int16(A)

See also


intmax, intmin, numeric types.

History


Version Description
1.0.0 initial version

Author


Allan CORNET

Integers type int32 >>