Posts

Showing posts from December, 2017

Basic Matrix Operations (easy to use/read)

Image
0m×n  denotes the  m×n  zero matrix , with all entries zero. In  denotes the n×n  identity matrix , with Iij={1 i = j 0 i  j  For example;  02×3=[000000],  I2=[1001] Transpose of Matrix  A=[abcdef]  AT=[adbecf] Summation of Matrices (entrywise) [abcd]+[xyzt]=[a+xb+yc+zd+t] Sub...