Returns the eigenvalues of a matrix.
More...
|
subroutine | eigenvaluefullsp (A, eValues, err, error,) |
| Returns the eigenvalues of a full single precision matrix A. More...
|
|
subroutine | eigenvaluefulldp (A, eValues, err, error,) |
| Returns the eigenvalues of a full double precision matrix A. More...
|
|
Returns the eigenvalues of a matrix.
Definition at line 107 of file maths.f90.
subroutine maths::eigenvalue::eigenvaluefulldp |
( |
real(dp), dimension(:,:), intent(in) |
A, |
|
|
real(dp), dimension(:), intent(out) |
eValues, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Returns the eigenvalues of a full double precision matrix A.
- Parameters
-
[in] | a | The matrix to find the eigenvalues of |
[out] | evalues | On exit, the eigenvalues of the matrix |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 993 of file maths.f90.
subroutine maths::eigenvalue::eigenvaluefullsp |
( |
real(sp), dimension(:,:), intent(in) |
A, |
|
|
real(sp), dimension(:), intent(out) |
eValues, |
|
|
integer(intg), intent(out) |
err, |
|
|
type(varying_string), intent(out) |
error |
|
) |
| |
|
private |
Returns the eigenvalues of a full single precision matrix A.
- Parameters
-
[in] | a | The matrix to find the eignenvalues for |
[out] | evalues | On exit, the eignevalues |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 905 of file maths.f90.