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