scipy.linalg.lapack.sgbtrf#
- scipy.linalg.lapack.sgbtrf(ab, kl, ku[, m, n, ldab, overwrite_ab]) = <fortran 函数 sgbtrf>#
sgbtrf
的包装器。- 参数:
- ab输入秩为 2 的数组('f'),边界为 (ldab,n)
- kl输入整数
- ku输入整数
- 返回值:
- lu秩为 2 的数组('f'),边界为 (ldab,n) 且存储在 ab 中
- ipiv秩为 1 的数组('i'),边界为 (MIN(m, n))
- info整数
- 其他参数:
- m输入整数,可选
默认值:shape(ab,1)
- n输入整数,可选
默认值:shape(ab,1)
- overwrite_ab输入整数,可选
默认值:0
- ldab输入整数,可选
默认值:max(shape(ab,0),1)