Create Simulink.NumericType object
describing unsigned fixed-point data type
a = ufix(WordLength)
ufix( returns
a WordLength)Simulink.NumericType object that describes an
unsigned fixed-point data type with the specified word length and
unspecified scaling.
Note
ufix is a legacy function. In new code, use fixdt instead.
In existing code, replace ufix(WordLength) with fixdt(0,WordLength).
Define a 16-bit unsigned fixed-point data type.
a = ufix(16)
a =
NumericType with properties:
DataTypeMode: 'Fixed-point: unspecified scaling'
Signedness: 'Unsigned'
WordLength: 16
IsAlias: 0
DataScope: 'Auto'
HeaderFile: ''
Description: ''