Lines Matching full:matrix
1 /** Compute the matrix inverse via Gauss-Jordan elimination.
53 /** Allocate memory for a matrix with the specified number of rows and
63 /** Free the memory that was allocated for a matrix. */
69 /** Fill in some numbers in a matrix. */
82 /** Print all elements of a matrix. */
98 /** Copy a subset of the elements of a matrix into another matrix. */
134 /** Compute the matrix product of a1 and a2. */
162 /** Apply the Gauss-Jordan elimination algorithm on the matrix p->a starting
165 * initialized with. If the matrix p->a is nonsingular, and if matrix p->a
167 * submatrix p->a[0..p->rows-1,0..p->rows-1] is the identity matrix.
264 /** Matrix inversion via the Gauss-Jordan algorithm. */
280 /** Compute the average square error between the identity matrix and the
281 * product of matrix a with its inverse matrix.