scipy.linalg.lapack.dstevd#
- scipy.linalg.lapack.dstevd(d, e[, compute_v, lwork, liwork, overwrite_d, overwrite_e]) = <fortran function dstevd>#
dstevd
的包装器。- 参数:
- d输入秩为 1 的数组(‘d’),边界为 (n)
- e输入秩为 1 的数组(‘d’),边界为 (MAX(-1 + n, 1))
- 返回:
- vals秩为 1 的数组(‘d’),边界为 (n) 且 d 存储
- z秩为 2 的数组(‘d’),边界为 (ldz,(compute_v?n:1))
- infoint
- 其他参数:
- overwrite_d输入 int,可选
默认值:0
- overwrite_e输入 int,可选
默认值:0
- compute_v输入 int,可选
默认值:1
- lwork输入 int,可选
默认值:(compute_v?1+4*n+n*n:1)
- liwork输入 int,可选
默认值:(compute_v?3+5*n:1)