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.dgemm¶
- scipy.linalg.blas.dgemm = <fortran object>¶
- dgemm - Function signature:
- c = dgemm(alpha,a,b,[beta,c,trans_a,trans_b,overwrite_c])
- Required arguments:
- alpha : input float 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 input float c : input rank-2 array(‘d’) 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(‘d’) with bounds (m,n)