pub unsafe fn syrk(
uplo: char,
trans: char,
n: usize,
k: usize,
alpha: f64,
a: *const f64,
lda: usize,
beta: f64,
c: *mut f64,
ldc: usize,
)
Expand description
Performs a symmetric rank-k update on a matrix.
This function computes one of the following operations:
C := alpha * A * A^T + beta * C
(iftrans
= âNâ)C := alpha * A^T * A + beta * C
(iftrans
= âTâ)