π₯ MATRIX Operations implemented in JavaScript π
Welcoming you to this super exciting 𧡠where we will implement various matrix operations in JavaScript along with their Complexity Analysis (both Time and Space).
Here, number of rows is 3 and number of columns is also 3.
β
3οΈβ£ Diagonal Matrix
A "Diagonal Matrix" is a square matrix which has only Zeroes (0s) as its non-diagonal elements (row index = column index).
Diagonal elements can be both Non-Zero and Zero.
Example:
[[5, 0, 0],
[0, 2, 0],
[0, 0, -3]]
β
4οΈβ£ Upper Triangular Matrix
An "Upper Triangular Matrix" is a square matrix which has only Zeroes (0s) as elements "below" the diagonal elements.
Example:
[[5, 6, 7],
[0, 2, 3],
[0, 0, -3]]
β
5οΈβ£ Lower Triangular Matrix
An "Lower Triangular Matrix" is a square matrix which has only Zeroes (0s) as elements "above" the diagonal elements.
Example:
[[5, 0, 0],
[1, 2, 0],
[4, 7, -3]]
β
6οΈβ£ Identity/Unity Matrix
An "Identity Matrix" is a diagonal matrix with only 1s as its diagonal elements.
Example:
[[1, 0, 0],
[0, 1, 0],
[0, 0, 1]]
β
7οΈβ£ Zero Matrix
A "Zero Matrix" has only Zeroes (0s) as all its elements.
Example:
[[0, 0, 0],
[0, 0, 0],
[0, 0, 0]]
β
8οΈβ£ Transpose Matrix
A "Transpose Matrix" is formed by converting rows of a matrix into columns (and thus columns into rows).
Dimension of a transpose matrix is exactly opposite of the dimension of the original matrix.
β
9οΈβ£ Scalar Multiplication
By doing "Scalar Multiplication", each element of the matrix is multiplied by a scalar value.
β
1οΈβ£0οΈβ£ Matrix Addition
By "Matrix Addition", elements at a specific row and column from 2 matrices are added.
β
1οΈβ£1οΈβ£ Matrix Subtraction
By "Matrix Subtraction", elements at a specific row and column from one matrix is subtracted from the another.
β
1οΈβ£2οΈβ£ Matrix Multiplication
By "Matrix Multiplication", elements of a row from the first matrix is first multiplied with elements of a column from the second matrix and then summation is taken.
β
1οΈβ£3οΈβ£ Orthogonal Matrix
A matrix is known as "Orthogonal" when multiplied with its transpose results into an Identity Matrix.
In other words, if transpose of a matrix is equivalent to its inverse, the matrix is orthogonal.
β
OMISSIONS:
Inverse and, Determinant of a Matrix are omitted because of time constraints.
But, by now you must be familiar with matrix operations. Can you implement these 2 on your own? If you do, share that here in the reply.
We reached to the end of this π§΅. I hope you enjoyed implementing all these matrix operations in JavaScript.
If you haven't followed yet, do follow me for receiving such informative threads in future.
Share your feedbacks. Support me by giving a Like and RT.
See you soon,π
β’ β’ β’
Missing some Tweet in this thread? You can try to
force a refresh