mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
82 lines
1.9 KiB
JavaScript
82 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
function factory (type, config, load, typed) {
|
|
var equal = load(require('./equal'));
|
|
|
|
/**
|
|
* Test element wise whether two matrices are equal.
|
|
* The function accepts both matrices and scalar values.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.deepEqual(x, y)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.deepEqual(2, 4); // returns false
|
|
*
|
|
* a = [2, 5, 1];
|
|
* b = [2, 7, 1];
|
|
*
|
|
* math.deepEqual(a, b); // returns false
|
|
* math.equal(a, b); // returns [true, false, true]
|
|
*
|
|
* See also:
|
|
*
|
|
* equal, unequal
|
|
*
|
|
* @param {number | BigNumber | Fraction | Complex | Unit | Array | Matrix} x First matrix to compare
|
|
* @param {number | BigNumber | Fraction | Complex | Unit | Array | Matrix} y Second matrix to compare
|
|
* @return {number | BigNumber | Fraction | Complex | Unit | Array | Matrix}
|
|
* Returns true when the input matrices have the same size and each of their elements is equal.
|
|
*/
|
|
var deepEqual = typed('deepEqual', {
|
|
'any, any': function (x, y) {
|
|
return _deepEqual(x.valueOf(), y.valueOf());
|
|
}
|
|
});
|
|
|
|
deepEqual.toTex = '\\mathrm{${name}}\\left(${args}\\right)';
|
|
|
|
return deepEqual;
|
|
|
|
/**
|
|
* Test whether two arrays have the same size and all elements are equal
|
|
* @param {Array | *} x
|
|
* @param {Array | *} y
|
|
* @return {boolean} Returns true if both arrays are deep equal
|
|
*/
|
|
function _deepEqual(x, y) {
|
|
if (Array.isArray(x)) {
|
|
if (Array.isArray(y)) {
|
|
var len = x.length;
|
|
if (len !== y.length) {
|
|
return false;
|
|
}
|
|
|
|
for (var i = 0; i < len; i++) {
|
|
if (!_deepEqual(x[i], y[i])) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
else {
|
|
return false;
|
|
}
|
|
}
|
|
else {
|
|
if (Array.isArray(y)) {
|
|
return false;
|
|
}
|
|
else {
|
|
return equal(x, y);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
exports.name = 'deepEqual';
|
|
exports.factory = factory;
|