MATMUL — matrix multiplication#
- 
MATMUL(MATRIX_A, MATRIX_B)#
- Performs a matrix multiplication on numeric or logical arguments. - Parameters:
- MATRIX_A – An array of - INTEGER,- REAL,- COMPLEX, or- LOGICALtype, with a rank of one or two.
- MATRIX_B – An array of - INTEGER,- REAL, or- COMPLEXtype if- MATRIX_Ais of a numeric type; otherwise, an array of- LOGICALtype. The rank shall be one or two, and the first (or only) dimension of- MATRIX_Bshall be equal to the last (or only) dimension of- MATRIX_A.- MATRIX_Aand- MATRIX_Bshall not both be rank one arrays.
 
- Returns:
- The matrix product of - MATRIX_Aand- MATRIX_B. The type and kind of the result follow the usual type and kind promotion rules, as for the- *or- .AND.operators.
 - Standard:
- Fortran 90 and later 
- Class:
- Transformational function 
- Syntax:
- RESULT = MATMUL(MATRIX_A, MATRIX_B)