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