M. ( A B -- A.B )
Basic Linear Algebra Subroutines (BLAS) interface ยป BLAS interface matrix operations

Prev:n*M.M ( alpha A B -- alpha*A.B )
Next:n*M! ( n A -- A=n*A )


Vocabulary
math.blas.matrices

Inputs
Aa blas-matrix-base
Ba blas-matrix-base


Outputs
A.Ba blas-matrix-base


Word description
Calculate the matrix product AB and return a freshly allocated matrix containing the result. The width of A and the height of B must match. The returned matrix's height will be the same as A's, and its width will match B's. Corresponds to the xGEMM routines in BLAS.

See also
n*M.M+n*M!, n*M.M+n*M, n*M.M

Definition