FIXED  58U1MK 

The FIXED structure contains the integral and fractional parts of a fixed-point real number.

typedef struct _FIXED {  // fix

    WORD  fract;

    short value;

} FIXED;

 

Members

fract

Specifies the fractional part of the number.

value

Specifies the integer part of the number.

 

Remarks

The FIXED structure is used to describe the elements of the MAT2 structure.

See Also

MAT2