zgemm_

gemm_ performs one of the matrix-matrix operations

C := alpha*op( A )*op( B ) + beta*C,

where op( X ) is one of

op( X ) = X or op( X ) = X**T or op( X ) = X**H,

alpha and beta are scalars, and A, B and C are matrices, with op( A ) an m ⨉ k matrix, op( B ) a k ⨉ n matrix and C an m ⨉ n matrix.

More...
extern (C) nothrow @nogc @system
int
zgemm_
(
ref const char transa
,
ref const char transb
,
ref const FortranInt m
,
ref const FortranInt n
,
ref const FortranInt k
,
ref const cdouble alpha
,
const(cdouble)* a
,
ref const FortranInt lda
,
const(cdouble)* b
,
ref const FortranInt ldb
,
ref const cdouble beta
,
cdouble* c
,
ref const FortranInt ldc
)

Detailed Description

Meta