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) • 562 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.deepEqualDocs = void 0;
const deepEqualDocs = exports.deepEqualDocs = {
name: 'deepEqual',
category: 'Relational',
syntax: ['deepEqual(x, y)'],
description: 'Check equality of two matrices element wise. Returns true if the size of both matrices is equal and when and each of the elements are equal.',
examples: ['deepEqual([1,3,4], [1,3,4])', 'deepEqual([1,3,4], [1,3])'],
seealso: ['equal', 'unequal', 'smaller', 'larger', 'smallerEq', 'largerEq', 'compare']
};
;