scipy.linalg.blas.zaxpy¶
- 
scipy.linalg.blas.zaxpy(x, y[, n, a, offx, incx, offy, incy]) = <fortran object>¶
- Wrapper for - zaxpy.- Parameters: - x : input rank-1 array(‘D’) with bounds (*) - y : input rank-1 array(‘D’) with bounds (*) - Returns: - z : rank-1 array(‘D’) with bounds (*) and y storage - Other Parameters: - n : input int, optional - Default: (len(x)-offx)/abs(incx) - a : input complex, optional - Default: (1.0, 0.0) - offx : input int, optional - Default: 0 - incx : input int, optional - Default: 1 - offy : input int, optional - Default: 0 - incy : input int, optional - Default: 1 
