14 lines
457 B
JavaScript
14 lines
457 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.complexDocs = void 0;
|
|
const complexDocs = exports.complexDocs = {
|
|
name: 'complex',
|
|
category: 'Construction',
|
|
syntax: ['complex()', 'complex(re, im)', 'complex(string)'],
|
|
description: 'Create a complex number.',
|
|
examples: ['complex()', 'complex(2, 3)', 'complex("7 - 2i")'],
|
|
seealso: ['bignumber', 'boolean', 'index', 'matrix', 'number', 'string', 'unit']
|
|
}; |