ssymm_

symm_ 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 symmetric matrix and B and C are m ⨉ n matrices..

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

Detailed Description

Meta