FIX16Mul

This function multiplies two signed 16-bit fixed-point numbers. The resolution (number of decimal places) of the numbers does not have to be the same. The resolution of the number with the higher number of decimal places is reduced before multiplication. This means that the decimal places of the number with the higher resolution are truncated. The result of the multiplication is a signed 16-bit fixed-point number.
Return value
Name | Type | Description |
---|---|---|
FIX16Mul |
|
Inputs
VAR_INPUT
multiA : T_FIX16;
multiB : T_FIX16;
END_VAR
Name | Type | Description |
---|---|---|
multiA | The first multiplier | |
multiB | The second multiplier |
Example:
PROGRAM FIXMUL
VAR
a, b : T_FIX16;
result : LREAL;
END_VAR
a := LREAL_TO_FIX16( 0.25, 8 );
b := LREAL_TO_FIX16( 10.0, 8 );
result := FIX16_TO_LREAL( FIX16Mul( a, b ) );(* The result is: 2.5 *)
Requirements
Development environment | Target platform | PLC libraries to be integrated (category group) |
---|---|---|
TwinCAT v3.1.0 | PC or CX (x86, x64, Arm®) | Tc2_Utilities (System) |