scipy.linalg.lapack.chegvd#

scipy.linalg.lapack.chegvd(a, b[, itype, jobz, uplo, lwork, lrwork, liwork, overwrite_a, overwrite_b]) = <fortran function chegvd>#

chegvd 的包装器。

参数:
a输入 rank-2 数组(‘F’),边界为 (n,n)
b输入 rank-2 数组(‘F’),边界为 (n,n)
返回值:
wrank-1 数组(‘f’),边界为 (n)
vrank-2 数组(‘F’),边界为 (n,n),带有 a 存储
infoint
其他参数:
itype输入 int,可选

默认值 1

jobz输入字节,可选

默认值 'V'

uplo输入字节,可选

默认值 'L'

overwrite_a输入 int,可选

默认值 0

overwrite_b输入 int,可选

默认值 0

lwork输入 int,可选

默认值 (jobz=='N'?n+1:n*(n+2))

lrwork输入 int,可选

默认值 max((jobz=='N'?n:2*n*n+5*n+1),1)

liwork输入 int,可选

默认值 (jobz=='N'?1:5*n+3)