convert Int2Double(a, b)
|
Group |
Converts the Integer a into a real number. b specifies how many digits should be seen as digits after the comma. This function can be used if the incoming structure does not support real numbers.
Description of Parameters
|
Parameter |
Description |
|
a |
Value. |
|
b |
Decimal digits. |
Examples
|
Parameter a |
Parameter b |
Result |
|
175 |
175 |
|
|
175 |
1 |
17.5 |
|
175 |
2 |
1.75 |
|
175 |
3 |
0.175 |