scipy.linalg.blas.dsyr#
- scipy.linalg.blas.dsyr(alpha, x[, lower, incx, offx, n, a, overwrite_a]) = <fortran function dsyr>#
dsyr
的包装器。- 参数:
- alpha输入浮点数
- x输入秩为 1 的数组(‘d’),边界为 (*)
- 返回值:
- a秩为 2 的数组(‘d’),边界为 (n,n)
- 其他参数:
- lower输入整数,可选
默认值:0
- incx输入整数,可选
默认值:1
- offx输入整数,可选
默认值:0
- n输入整数,可选
默认值: (len(x)-1-offx)/abs(incx)+1
- a输入秩为 2 的数组(‘d’),边界为 (n,n)
- overwrite_a输入整数,可选
默认值:0