scipy.linalg.lapack.csysv#

scipy.linalg.lapack.csysv(a, b[, lwork, lower, overwrite_a, overwrite_b]) = <fortran 函数 csysv>#

csysv 的包装器。

参数:
a输入秩为 2 的数组('F'),边界为 (n,n)
b输入秩为 2 的数组('F'),边界为 (n,nrhs)
返回:
udut秩为 2 的数组('F'),边界为 (n,n),带 a 存储
ipiv秩为 1 的数组('i'),边界为 (n)
x秩为 2 的数组('F'),边界为 (n,nrhs),带 b 存储
infoint
其他参数:
overwrite_a输入 int,可选

默认值: 0

overwrite_b输入 int,可选

默认值: 0

lwork输入 int,可选

默认值: max(n,1)

lower输入 int,可选

默认值: 0