Free Microsoft Azure account for Students

Good news for global students!  If you are a student (current active student having a .edu email account), you can get a FREE Azure cloud computing account from Microsoft today!   The free account includes: Free Azure Web App Service Free MySQL Database from ClearDB Free App Insights Free VS Online Service With these, you can … Continue reading Free Microsoft Azure account for Students

Transpose of a Matrix

The transpose of a matrix A is another matrix .   The general formula for a matrix transposition is For example, A square matrix whose transpose is equal to itself is called a symmetric matrix; that is, A is symmetric if Here is the C++ implementation of matrix transposition.  The complete source code of CMatrix can … Continue reading Transpose of a Matrix

Matrix – Vector Multiplication

The general formula for a matrix-vector product is The number of columns in A (n) has to equal the number of components in the vector x (n). The number of rows in A (m) determines the number of components in the result Ax. For example, Here is the C++ implementation of matrix – vector multiplication.  … Continue reading Matrix – Vector Multiplication