dbcsr_gershgorin_norm Function

public function dbcsr_gershgorin_norm(matrix) result(norm)

Arguments

Type IntentOptional Attributes Name
type(dbcsr_type), intent(inout) :: matrix

Return Value real(kind=real_8)


Source Code

   FUNCTION dbcsr_gershgorin_norm(matrix) RESULT(norm)
      TYPE(dbcsr_type), INTENT(INOUT)                    :: matrix
      REAL(KIND=real_8)                                  :: norm

      norm = dbcsr_gershgorin_norm_prv(matrix%prv)
   END FUNCTION dbcsr_gershgorin_norm