scipy.linalg.blas.cher2#
- scipy.linalg.blas.cher2(alpha, x, y[, lower, incx, offx, incy, offy, n, a, overwrite_a]) = <fortran function cher2>#
cher2
的包裝函式。- 參數:
- alpha輸入 複數
- x輸入 秩為 1 的陣列(‘F’),具有邊界 (*)
- y輸入 秩為 1 的陣列(‘F’),具有邊界 (*)
- 回傳值:
- a秩為 2 的陣列(‘F’),具有邊界 (n,n)
- 其他參數:
- lower輸入 int,選用
預設值:0
- incx輸入 int,選用
預設值:1
- offx輸入 int,選用
預設值:0
- incy輸入 int,選用
預設值:1
- offy輸入 int,選用
預設值:0
- n輸入 int,選用
預設值:((len(x)-1-offx)/abs(incx)+1 <=(len(y)-1-offy)/abs(incy)+1 ?(len(x)-1-offx)/abs(incx)+1 :(len(y)-1-offy)/abs(incy)+1)
- a輸入 秩為 2 的陣列(‘F’),具有邊界 (n,n)
- overwrite_a輸入 int,選用
預設值:0