scipy.linalg.blas.zgemm¶
- 
scipy.linalg.blas.zgemm(alpha, a, b[, beta, c, trans_a, trans_b, overwrite_c]) = <fortran object>¶ Wrapper for
zgemm.- Parameters
 - alphainput complex
 - ainput rank-2 array(‘D’) with bounds (lda,ka)
 - binput rank-2 array(‘D’) with bounds (ldb,kb)
 
- Returns
 - crank-2 array(‘D’) with bounds (m,n)
 
- Other Parameters
 - betainput complex, optional
 Default: (0.0, 0.0)
- cinput rank-2 array(‘D’) with bounds (m,n)
 - overwrite_cinput int, optional
 Default: 0
- trans_ainput int, optional
 Default: 0
- trans_binput int, optional
 Default: 0
