This is documentation for an old release of SciPy (version 0.13.0). Read this page in the documentation of the latest stable release (version 1.15.0).
scipy.linalg.blas.cgemm¶
- scipy.linalg.blas.cgemm = <fortran object>¶
- cgemm - Function signature:
- c = cgemm(alpha,a,b,[beta,c,trans_a,trans_b,overwrite_c])
- Required arguments:
- alpha : input complex a : input rank-2 array(‘F’) with bounds (lda,ka) b : input rank-2 array(‘F’) with bounds (ldb,kb)
- Optional arguments:
- beta := (0.0, 0.0) input complex c : input rank-2 array(‘F’) with bounds (m,n) overwrite_c := 0 input int trans_a := 0 input int trans_b := 0 input int
- Return objects:
- c : rank-2 array(‘F’) with bounds (m,n)