simple-squiggle/node_modules/mathjs/lib/esm/expression/embeddedDocs/function/arithmetic/fix.js

8 lines
308 B
JavaScript
Raw Normal View History

export var fixDocs = {
name: 'fix',
category: 'Arithmetic',
syntax: ['fix(x)'],
description: 'Round a value towards zero. If x is complex, both real and imaginary part are rounded towards zero.',
examples: ['fix(3.2)', 'fix(3.8)', 'fix(-4.2)', 'fix(-4.8)'],
seealso: ['ceil', 'floor', 'round']
};