Create Simulink.NumericType object
describing unsigned integer data type
a = uint(WordLength)
uint( returns
a WordLength)Simulink.NumericType object that describes the
data type of an unsigned integer with a word size given by WordLength.
Note
uint is a legacy function. In new code, use fixdt instead.
In existing code, replace uint(WordLength) with fixdt(0,WordLength,0).
Define a 16-bit unsigned integer.
a = uint(16)
a =
NumericType with properties:
DataTypeMode: 'Fixed-point: binary point scaling'
Signedness: 'Unsigned'
WordLength: 16
FractionLength: 0
IsAlias: 0
DataScope: 'Auto'
HeaderFile: ''
Description: ''