chemm_

hemm_ performs one of the matrix-matrix operations

C := alpha*A*B + beta*C,

where op( X ) is one of

C := alpha*B*A + beta*C,

alpha and beta are scalars, A is a hermitian matrix and B and C are m ⨉ n matrices..

More...
extern (C) nothrow @nogc @system
int
chemm_
(
ref const char side
,
ref const char uplo
,
ref const FortranInt m
,
ref const FortranInt n
,
ref const cfloat alpha
,
const(cfloat)* a
,
ref const FortranInt lda
,
const(cfloat)* b
,
ref const FortranInt ldb
,
ref const cfloat beta
,
cfloat* c
,
ref const FortranInt ldc
)

Detailed Description

Meta