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边界为
(n,n)的输入秩为 2 的数组 (‘F’) - b边界为
(n,n)的输入秩为 2 的数组 (‘F’)
- a边界为
- 返回值:
- w边界为
(n)的秩为 1 的数组 (‘f’) - v边界为
(n,n)的秩为 2 的数组 (‘F’),使用a存储 - infoint
- w边界为
- 其他参数:
- 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)