Important: The information in this document is obsolete and should not be used for new development.
FractMultiply
You can use theFractMultiplyfunction to calculate the product of two numbers.
fract FractMultiply (fract multiplicand, fract multiplier);
multiplicand- The number to be multiplied by the multiplier.
multiplier
The number by which the multiplicand is to multiplied.- function result
- The product of two numbers.
DESCRIPTION
TheFractMultiplyfunction calculates the product of two numbers, specified in themultiplicandandmultiplierparameters. If the parameters are a and b, the product a b is returned.The format of the number returned depends on the respective number formats of the
multiplicandandmultiplierparameters. The operation has a bias of 30 bits; in general, the bias of the resulting number is the sum of the biases of the input numbers, shifted right by 30 bits. Thus if either themultiplicandormultiplierparameter isfract, then the result is the same fixed-point format as the other argument.Table 8-5 shows the bias of the FractMultiply result. The dashed line indicates that the resulting bias is not equivalent to long, fixed, or fract. Use the rules of the operation to determine it
FractMultiplyresult biaslong fixed fract long --- --- long fixed --- --- fixed fract long fixed fract SPECIAL CONSIDERATIONS
FractMultiplydoes not pin its result in the case of an overflow; the result returned is modulo 4.