scipy.linalg.blas.chpmv¶
- 
scipy.linalg.blas.chpmv(n, alpha, ap, x[, incx, offx, beta, y, incy, offy, lower, overwrite_y]) = <fortran object>¶
- Wrapper for - chpmv.- Parameters: - n : input int - alpha : input complex - ap : input rank-1 array(‘F’) with bounds (*) - x : input rank-1 array(‘F’) with bounds (*) - Returns: - yout : rank-1 array(‘F’) with bounds (ly) and y storage - Other Parameters: - incx : input int, optional - Default: 1 - offx : input int, optional - Default: 0 - beta : input complex, optional - Default: (0.0, 0.0) - y : input rank-1 array(‘F’) with bounds (ly) - overwrite_y : input int, optional - Default: 0 - incy : input int, optional - Default: 1 - offy : input int, optional - Default: 0 - lower : input int, optional - Default: 0 
