ALF dev.
A QMC Code for fermionic models
|
Public Member Functions | |
subroutine | svd_c (A, U, D, V, NCON) |
This function calculates the SVD using the standard QR algorithm of LaPack. More... | |
Definition at line 75 of file mymats_mod.F90.
subroutine mymats::svd::svd_c | ( | complex (kind=kind(0.d0)), dimension(:,:), intent(in) | A, |
complex (kind=kind(0.d0)), dimension(:,:), intent(inout) | U, | ||
complex (kind=kind(0.d0)), dimension(:), intent(inout) | D, | ||
complex (kind=kind(0.d0)), dimension(:,:), intent(inout) | V, | ||
integer, intent(in) | NCON | ||
) |
This function calculates the SVD using the standard QR algorithm of LaPack.
[in] | A | a 2D array constituting the input matrix. |
[out] | U | a 2D array containing the left singular vectors. |
[out] | D | a 1D array containing the sorted singular values. |
[out] | V | a 2D array containing the right singular vectors. |
[in] | NCON |
Definition at line 1151 of file mymats_mod.F90.