UNPKG

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