Lines Matching full:matrix
1 /** Compute the matrix inverse via Gauss-Jordan elimination.
41 /** Allocate memory for a matrix with the specified number of rows and
51 /** Free the memory that was allocated for a matrix. */
57 /** Fill in some numbers in a matrix. */
70 /** Print all elements of a matrix. */
86 /** Copy a subset of the elements of a matrix into another matrix. */
122 /** Compute the matrix product of a1 and a2. */
150 /** Apply the Gauss-Jordan elimination algorithm on the matrix p->a starting
153 * initialized with. If the matrix p->a is nonsingular, and if matrix p->a
155 * submatrix p->a[0..p->rows-1,0..p->rows-1] is the identity matrix.
228 /** Matrix inversion via the Gauss-Jordan algorithm. */
244 /** Compute the average square error between the identity matrix and the
245 * product of matrix a with its inverse matrix.
282 "<m>: matrix size.\n",