conj.js 428 B

123456789101112131415
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.conjDocs = void 0;
  6. var conjDocs = {
  7. name: 'conj',
  8. category: 'Complex',
  9. syntax: ['conj(x)'],
  10. description: 'Compute the complex conjugate of a complex value. If x = a+bi, the complex conjugate is a-bi.',
  11. examples: ['conj(2 + 3i)', 'conj(2 - 3i)', 'conj(-5.2i)'],
  12. seealso: ['re', 'im', 'abs', 'arg']
  13. };
  14. exports.conjDocs = conjDocs;