mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
10 lines (9 loc) • 321 B
JavaScript
;
module.exports = {
'name': 'conj',
'category': 'Complex',
'syntax': ['conj(x)'],
'description': 'Compute the complex conjugate of a complex value. If x = a+bi, the complex conjugate is a-bi.',
'examples': ['conj(2 + 3i)', 'conj(2 - 3i)', 'conj(-5.2i)'],
'seealso': ['re', 'im', 'abs', 'arg']
};