This subroutine solves a linear system with the gauss method. More...
| Functions/Subroutines | |
| subroutine | gauss (nn, mm, aa, xx, bb) | 
This subroutine solves a linear system with the gauss method.
| subroutine gauss | ( | integer | nn, | 
| integer | mm, | ||
| double precision, dimension(nn,mm) | aa, | ||
| double precision, dimension(nn) | xx, | ||
| double precision, dimension(nn) | bb | ||
| ) | 
| [in] | nn | matrix columns number | 
| [in] | mm | matrix rows number | 
| [in] | aa | linear system matrix | 
| [out] | xx | linear system solution | 
| [in] | bb | linear system right hand side |