scipy.linalg.lapack.dsbevd#
- scipy.linalg.lapack.dsbevd(ab[, compute_v, lower, ldab, liwork, overwrite_ab]) = <fortran function dsbevd>#
dsbevd
的包装器。- 参数:
- ab输入秩为 2 的数组(‘d’),边界为 (ldab,n)
- 返回值:
- w秩为 1 的数组(‘d’),边界为 (n)
- z秩为 2 的数组(‘d’),边界为 (ldz,ldz)
- infoint
- 其他参数:
- overwrite_ab输入 int,可选
默认值: 1
- compute_v输入 int,可选
默认值: 1
- lower输入 int,可选
默认值: 0
- ldab输入 int,可选
默认值: shape(ab,0)
- liwork输入 int,可选
默认值: (compute_v?3+5*n:1)