ParaMonte Fortran 2.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
This is a concrete derived type whose instances are exclusively used to signify the Gauss-Transformation class of a given matrix within an interface of a procedure of the ParaMonte library.
More...
This is a concrete derived type whose instances are exclusively used to signify the Gauss-Transformation class of a given matrix within an interface of a procedure of the ParaMonte library.
Objects instantiated from this derived type are exclusively used to differentiate the procedures within the various generic interfaces of the ParaMonte library.
As such, this concrete derived type does not contain any attributes.
A Gauss matrix is a special form of the atomic triangular matrix that differs from an Identity matrix only in the elements of a single row preceding the diagonal entry of that row (as opposed to the Frobenius matrix definition which has the matrix differing from the identity matrix in a single column below the diagonal).
The following example shows a 4-by-4 Gauss matrix with its 3rd row differing from the identity matrix.
\begin{equation} A = \begin{pmatrix} 1&0&0&0\\ 0&1&0&0\\ a_{31}&a_{32}&1&0\\ 0&0&0&1 \end{pmatrix} \end{equation}
An alternative name for the Gauss matrix is Gauss transformation matrix, after Carl Friedrich Gauss.
The Gauss matrix is used in the process of Gaussian elimination to represent the Gaussian transformations.
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
Definition at line 1991 of file pm_matrixClass.F90.