mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
14 lines (13 loc) • 448 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.atan2Docs = void 0;
var atan2Docs = exports.atan2Docs = {
name: 'atan2',
category: 'Trigonometry',
syntax: ['atan2(y, x)'],
description: 'Computes the principal value of the arc tangent of y/x in radians.',
examples: ['atan2(2, 2) / pi', 'angle = 60 deg in rad', 'x = cos(angle)', 'y = sin(angle)', 'atan2(y, x)'],
seealso: ['sin', 'cos', 'tan']
};
;