scipy.linalg.blas.dsyr2#

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

dsyr2 的封装。

参数:
alpha输入浮点数
x输入秩为 1 的数组(‘d’),有界限 (*)
y输入秩为 1 的数组(‘d’),有界限 (*)
返回:
a秩为 2 的数组(‘d’),有界限 (n,n)
其他参数:
lower输入整数,可选

默认值: 0

incx输入整数,可选

默认值: 1

offx输入整数,可选

默认值: 0

incy输入整数,可选

默认值: 1

offy输入整数,可选

默认值: 0

n输入整数,可选

默认值: ((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 的数组(‘d’),有界限 (n,n)
overwrite_a输入整数,可选

默认值: 0