UNPKG

380 BJavaScriptView Raw
1module.exports = {
2 'name': 'complex',
3 'category': 'Construction',
4 'syntax': [
5 'complex()',
6 'complex(re, im)',
7 'complex(string)'
8 ],
9 'description':
10 'Create a complex number.',
11 'examples': [
12 'complex()',
13 'complex(2, 3)',
14 'complex("7 - 2i")'
15 ],
16 'seealso': [
17 'bignumber', 'boolean', 'index', 'matrix', 'number', 'string', 'unit'
18 ]
19}