- Deep Learning Essentials
- Wei Di Anurag Bhardwaj Jianing Wei
- 191字
- 2021-06-30 19:17:46
Data operations
In this section, we will look at some of the most common transformations applied on matrices.
- Matrix transpose: Matrix transpose is a matrix transform that simply mirrors the matrix along its main diagonal. Mathematically it is defined as follows:


- Matrix multiplication: Matrix multiplication is one of the most fundamental operations that can be applied to any two matrices. A matrix, A, of shape Ar x Ac can be multiplied by another matrix, B, of shape Br x Bc if and only if Ac = Br. The resultant matrix, C, is the shape Ar x Bc .The multiplication operation is defined as follows:

Matrix multiplication generally has very useful properties. For example, matrix multiplication is distributive:

Matrix multiplication is also associative:

Matrix multiplication also has a very simple form for its transpose:

Matrix multiplication is not commutative, which means A x B ≠ B x A. However, the dot products between two vectors is commutative:
