Skip to content
Snippets Groups Projects
Commit d4c357e8 authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann :seedling:
Browse files

module for DLRA studies

parent ca8720fd
No related branches found
No related tags found
No related merge requests found
module DLRA
USE prec_const
USE lapack
implicit none
PUBLIC :: filter_singular_value_ky_pj
CONTAINS
SUBROUTINE filter_singular_value_ky_pj(nsv,array_ky_pj)
IMPLICIT NONE
! ARGUMENTS
INTEGER, INTENT(IN) :: nsv ! number of singular values to keep
COMPLEX(xp), DIMENSION(:,:), INTENT(INOUT) :: array_ky_pj ! Array to filter
!
! Singular value decomposition
! CALL SVD(array_ky_pj,singular_values)
END SUBROUTINE
end module DLRA
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment