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 frobenius 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 frobenius 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 Frobenius matrix is a special kind of square matrix from numerical mathematics.
A matrix is a Frobenius matrix if it has the following three properties:
The following matrix is an example.
\begin{equation} A = \begin{pmatrix} 1&0&0&\cdots &0\\ 0&1&0&\cdots &0\\ 0&a_{32}&1&\cdots &0\\ \vdots &\vdots &\vdots &\ddots &\vdots \\ 0&a_{n2}&0&\cdots &1 \end{pmatrix} \end{equation}
Frobenius matrices are invertible.
The inverse of a Frobenius matrix is again a Frobenius matrix, equal to the original matrix with changed signs outside the main diagonal.
The inverse of the example above is therefore:
\begin{equation} A^{-1} = \begin{pmatrix} 1&0&0&\cdots &0\\ 0&1&0&\cdots &0\\ 0&-a_{{32}}&1&\cdots &0\\ \vdots &\vdots &\vdots &\ddots &\vdots \\ 0&-a_{{n2}}&0&\cdots &1 \end{pmatrix} \end{equation}
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 1889 of file pm_matrixClass.F90.