Elementwise multiplication. C_ij = A_ij * B_ij.
 Also known as a Hadamard product.
    
    Arguments
    
      
      
| Type | 
Intent | Optional | 
Attributes |  | Name |  | 
  
  
  
  
  
  | type(Matrix_ps), | 
  intent(in) | 
   | 
  
   | :: | 
  matA | Matrix A.  | 
  
  
  
  
  
  
  | type(Matrix_ps), | 
  intent(in) | 
   | 
  
   | :: | 
  matB | Matrix B.  | 
  
  
  
  
  
  
  | type(Matrix_ps), | 
  intent(inout) | 
   | 
  
   | :: | 
  matC | matC = MatA mult MatB.  |