construct_hermitian_linop_csp Module Procedure

module procedure construct_hermitian_linop_csp private pure module function construct_hermitian_linop_csp(data) result(A)

Arguments

Type IntentOptional Attributes Name
complex(kind=sp), intent(in), dimension(test_size, test_size) :: data

Return Value type(hermitian_linop_csp)


Source Code

        pure module function construct_hermitian_linop_csp(data) result(A)
            implicit none(type, external)
            complex(sp), dimension(test_size, test_size), intent(in) :: data
            type(hermitian_linop_csp) :: A
        end function construct_hermitian_linop_csp