OpenCMISS-Iron Internal API Documentation
maths::eigenvalue Interface Reference

Returns the eigenvalues of a matrix. More...

Private Member Functions

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...
 

Detailed Description

Returns the eigenvalues of a matrix.

Definition at line 107 of file maths.f90.

Member Function/Subroutine Documentation

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]aThe matrix to find the eigenvalues of
[out]evaluesOn exit, the eigenvalues of the matrix
[out]errThe error code
[out]errorThe 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]aThe matrix to find the eignenvalues for
[out]evaluesOn exit, the eignevalues
[out]errThe error code
[out]errorThe error string

Definition at line 905 of file maths.f90.