dbcsr_set_diag_d Subroutine

private subroutine dbcsr_set_diag_d(matrix, diag)

Arguments

Type IntentOptional Attributes Name
type(dbcsr_type), intent(inout) :: matrix
real(kind=real_8), intent(in), DIMENSION(:) :: diag

Source Code

      SUBROUTINE dbcsr_set_diag_d (matrix, diag)
         TYPE(dbcsr_type), INTENT(INOUT)                    :: matrix
         REAL(kind=real_8), DIMENSION(:), INTENT(IN)                  :: diag

         CALL dbcsr_set_diag_prv(matrix%prv, diag)
      END SUBROUTINE dbcsr_set_diag_d