DotMatrix Interface

public interface DotMatrix

Contents


Module Procedures

private subroutine DotMatrix_lsr(matA, matB, product)

Product = sum(MatA[ij]*MatB[ij])

Arguments

Type IntentOptional AttributesName
type(Matrix_lsr), intent(in) :: matA

Matrix A.

type(Matrix_lsr), intent(in) :: matB

Matrix B.

real(kind=NTREAL), intent(out) :: product

Dot product.

private subroutine DotMatrix_lsc(matA, matB, product)

Arguments

Type IntentOptional AttributesName
type(Matrix_lsc), intent(in) :: matA

Matrix A.

type(Matrix_lsc), intent(in) :: matB

Matrix B.

complex(kind=NTCOMPLEX), intent(out) :: product

Dot product.