Determines whether the provided value is a numeric matrix.
In mathematics, a matrix is a rectangular array of numbers or other mathematical objects with elements or entries arranged in rows and columns. From Wikipedia (https://en.wikipedia.org/wiki/Matrix_(mathematics)).
In mathematics, a matrix is a rectangular array of numbers or other mathematical objects with elements or entries arranged in rows and columns.
From Wikipedia (https://en.wikipedia.org/wiki/Matrix_(mathematics)).
The value to validate.
true if the value is an array of number arrays.
true
A value is considered a matrix if:
[]
false
[[]]
[[1, 2], [3, 4]]
[[1], [2], [3]]
[[1], [2, 3]]
[[1], ['a']]
[1, 2]
{}
1.1
is2DArray
Determines whether the provided value is a numeric matrix.