conj.js (299B)
1 export var conjDocs = { 2 name: 'conj', 3 category: 'Complex', 4 syntax: ['conj(x)'], 5 description: 'Compute the complex conjugate of a complex value. If x = a+bi, the complex conjugate is a-bi.', 6 examples: ['conj(2 + 3i)', 'conj(2 - 3i)', 'conj(-5.2i)'], 7 seealso: ['re', 'im', 'abs', 'arg'] 8 };