Matrix
Applies to: general, python
A matrix is a rectangular array of numbers, commonly used for linear transformations, systems of equations, and tabular math.
A = np.array([[1, 2], [3, 4]])
See also: array, dot-product, matrix-multiplication
Applies to: general, python
A matrix is a rectangular array of numbers, commonly used for linear transformations, systems of equations, and tabular math.
A = np.array([[1, 2], [3, 4]])
See also: array, dot-product, matrix-multiplication