fix
fix(x)
Round a value towards zero. If x is complex, both real and imaginary part are rounded towards zero.
Try it yourself:
$1 | fix(3.2) Your input: fix(3.2) Processed to: fix(3.2) Result: 3 lastResult: undefined Variables: {} | 3 |
$2 | fix(3.8) Your input: fix(3.8) Processed to: fix(3.8) Result: 3 lastResult: 3 Variables: { "result": { "mathjs": "BigNumber", "value": "3" }, "$1": { "mathjs": "BigNumber", "value": "3" } } | 3 |
$3 | fix(-4.2) Your input: fix(-4.2) Processed to: fix(-4.2) Result: -4 lastResult: 3 Variables: { "result": { "mathjs": "BigNumber", "value": "3" }, "$1": { "mathjs": "BigNumber", "value": "3" }, "$2": { "mathjs": "BigNumber", "value": "3" } } | -4 |
$4 | fix(-4.8) Your input: fix(-4.8) Processed to: fix(-4.8) Result: -4 lastResult: -4 Variables: { "result": { "mathjs": "BigNumber", "value": "-4" }, "$1": { "mathjs": "BigNumber", "value": "3" }, "$2": { "mathjs": "BigNumber", "value": "3" }, "$3": { "mathjs": "BigNumber", "value": "-4" } } | -4 |