arg.js 422 B

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