matmat_dcdc Subroutine

public subroutine matmat_dcdc(mat1, mat2, matout)

Check dimensions of the two matrices and multiply them

Note

Maybe it can be substituted just by the matriz multiplication (matmul).

Arguments

Type IntentOptional Attributes Name
double complex, intent(in) :: mat1(:,:)
double complex, intent(in) :: mat2(:,:)
double complex :: matout(size(mat1,1),size(mat2,2))