scipy.linalg.blas.caxpy¶
- scipy.linalg.blas.caxpy = <fortran object>¶
 - caxpy - Function signature:
 - z = caxpy(x,y,[n,a,offx,incx,offy,incy])
 - Required arguments:
 - x : input rank-1 array(‘F’) with bounds (*) y : input rank-1 array(‘F’) with bounds (*)
 - Optional arguments:
 - n := (len(x)-offx)/abs(incx) input int a := (1.0, 0.0) input complex offx := 0 input int incx := 1 input int offy := 0 input int incy := 1 input int
 - Return objects:
 - z : rank-1 array(‘F’) with bounds (*) and y storage
 
