mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
18 lines
407 B
JavaScript
18 lines
407 B
JavaScript
module.exports = {
|
|
'name': 'fraction',
|
|
'category': 'Construction',
|
|
'syntax': [
|
|
'fraction(num)',
|
|
'fraction(num,den)'
|
|
],
|
|
'description':
|
|
'Create a fraction from a number or from a numerator and denominator.',
|
|
'examples': [
|
|
'fraction(0.125)',
|
|
'fraction(1, 3) + fraction(2, 5)'
|
|
],
|
|
'seealso': [
|
|
'bignumber', 'boolean', 'complex', 'index', 'matrix', 'string', 'unit'
|
|
]
|
|
};
|