mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
18 lines
265 B
JavaScript
18 lines
265 B
JavaScript
module.exports = {
|
|
'name': 'unaryminus',
|
|
'category': 'Operators',
|
|
'syntax': [
|
|
'-x',
|
|
'unaryminus(x)'
|
|
],
|
|
'description':
|
|
'Inverse the sign of a value.',
|
|
'examples': [
|
|
'-4.5',
|
|
'-(-5.6)'
|
|
],
|
|
'seealso': [
|
|
'add', 'subtract'
|
|
]
|
|
};
|