scipy.linalg.lapack.cheev#

scipy.linalg.lapack.cheev(a[, compute_v, lower, lwork, overwrite_a]) = <fortran function cheev>#

cheev 的包装。

参数:
a输入秩 2 数组(‘F’) 范围为 (n,n)
返回值:
w秩 1 数组(‘f’) 范围为 (n)
v秩 2 数组(‘F’) 范围为 (n,n) 以及存储
infoint
其他参数:
compute_v输入 int,可选

默认值: 1

lower输入 int,可选

默认值: 0

overwrite_a输入 int,可选

默认值: 0

lwork输入 int,可选

默认值: max(2*n-1,1)