simple-squiggle/node_modules/mathjs/lib/esm/expression/embeddedDocs/function/arithmetic/square.js

8 lines
273 B
JavaScript
Raw Normal View History

export 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']
};