convert Double2Int(a, b)
|
Group |
Converts a number a into an Integer. b specifies how many digits are to be used. This function should be used for structures that do not support real numbers.
Description of Parameters
|
Parameter |
Description |
|
a |
Value. |
|
b |
Precision. |
Examples
|
Parameter a |
Parameter b |
Result |
|
1.75 |
1 |
|
|
1.75 |
1 |
17 |
|
1.75 |
2 |
175 |
|
1.75 |
3 |
1750 |