mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
17 lines
468 B
JavaScript
17 lines
468 B
JavaScript
module.exports = {
|
|
'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'
|
|
]
|
|
};
|