Returns the determinant of a matrix.
More...
Returns the determinant of a matrix.
Definition at line 94 of file maths.f90.
real(dp) function maths::determinant::determinantfulldp |
( |
real(dp), dimension(:,:), intent(in) |
A, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Returns the determinant of a full double precision matrix A.
- Parameters
-
[in] | a | The matrix to find the determinant of |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 801 of file maths.f90.
integer(intg) function maths::determinant::determinantfullintg |
( |
integer(intg), dimension(:,:), intent(in) |
A, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Returns the determinant of a full integer matrix A.
- Parameters
-
[in] | a | The matrix to find the determinant of |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 719 of file maths.f90.
real(sp) function maths::determinant::determinantfullsp |
( |
real(sp), dimension(:,:), intent(in) |
A, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Returns the determinant of a full single precision matrix A.
- Parameters
-
[in] | a | The matrix to find the determinant of |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 760 of file maths.f90.