dicom-microscopy-viewer-changed
Version:
Interactive web-based viewer for DICOM Microscopy Images
15 lines (14 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.squareDocs = void 0;
var squareDocs = {
name: 'square',
category: 'Arithmetic',
syntax: ['square(x)'],
description: 'Compute the square of a value. The square of x is x * x.',
examples: ['square(3)', 'sqrt(9)', '3^2', '3 * 3'],
seealso: ['multiply', 'pow', 'sqrt', 'cube']
};
exports.squareDocs = squareDocs;