scipy.linalg.lapack.chbevx#

scipy.linalg.lapack.chbevx(ab, vl, vu, il, iu[, ldab, compute_v, range, lower, abstol, mmax, overwrite_ab]) = <fortran function chbevx>#

chbevx 的包装器。

参数::
ab输入秩为 2 的数组(‘F’),边界为 (ldab,n)
vl输入浮点数
vu输入浮点数
il输入整数
iu输入整数
返回值::
w秩为 1 的数组(‘f’),边界为 (n)
z秩为 2 的数组(‘F’),边界为 (ldz,mmax)
m整数
ifail秩为 1 的数组(‘i’),边界为 ((compute_v?n:1))
info整数
其他参数::
overwrite_ab输入整数,可选

默认值:1

ldab输入整数,可选

默认值:shape(ab,0)

compute_v输入整数,可选

默认值:1

range输入整数,可选

默认值:0

lower输入整数,可选

默认值:0

abstol输入浮点数,可选

默认值:0.0

mmax输入整数,可选

默认值:(compute_v?(range==2?(iu-il+1):n):1)