Computes \(C := \alpha \operatorname{op}(A) B + \beta C\) when `A` is symmetric.
Usage
dsymm(
SIDE = "L",
UPLO = "U",
M = NULL,
N = NULL,
ALPHA = 1,
A,
LDA = NULL,
B,
LDB = NULL,
BETA = 0,
C,
LDC = NULL
)
Arguments
- SIDE
Character specifying whether `A` multiplies from the left (`"L"`) or right (`"R"`).
- UPLO
Character indicating whether `A` stores the upper (`"U"`) or lower (`"L"`) triangle.
- M, N
Optional integers for the output dimensions.
- ALPHA, BETA
Numeric scalars.
- A
Symmetric matrix or big.matrix.
- LDA, LDB, LDC
Leading dimensions.
- B
Input matrix.
- C
Optional output container updated in place.