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: - alpha : input complex
- a : input rank-2 array(‘D’) with bounds (lda,ka)
- b : input rank-2 array(‘D’) with bounds (ldb,kb)
Returns: - c : rank-2 array(‘D’) with bounds (m,n)
Other Parameters: - beta : input complex, optional
Default: (0.0, 0.0)
- c : input rank-2 array(‘D’) with bounds (m,n)
- overwrite_c : input int, optional
Default: 0
- trans_a : input int, optional
Default: 0
- trans_b : input int, optional
Default: 0