scipy.linalg.blas.caxpy#

scipy.linalg.blas.caxpy(x, y[, n, a, offx, incx, offy, incy]) = <fortran function caxpy>#

caxpy 的包裝函式。

參數:
x輸入 rank-1 陣列(‘F’),邊界為 (*)
y輸入 rank-1 陣列(‘F’),邊界為 (*)
回傳值:
zrank-1 陣列(‘F’),邊界為 (*) 且為 y 儲存空間
其他參數:
n輸入 int,選用

預設值:(len(x)-offx)/abs(incx)

a輸入 complex,選用

預設值:(1.0, 0.0)

offx輸入 int,選用

預設值:0

incx輸入 int,選用

預設值:1

offy輸入 int,選用

預設值:0

incy輸入 int,選用

預設值:1