scipy.linalg.lapack.ctgsen#
- scipy.linalg.lapack.ctgsen(select, a, b, q, z[, ijob, wantq, wantz, lwork, liwork, overwrite_a, overwrite_b, overwrite_q, overwrite_z]) = <fortran function ctgsen>#
ctgsen
的包装器。- 参数:
- select输入秩为 1 的数组(‘i’),边界为 (n)
- a输入秩为 2 的数组(‘F’),边界为 (n,n)
- b输入秩为 2 的数组(‘F’),边界为 (n,n)
- q输入秩为 2 的数组(‘F’),边界为 (n,n)
- z输入秩为 2 的数组(‘F’),边界为 (n,n)
- 返回值:
- as秩为 2 的数组(‘F’),边界为 (n,n),存储为 a
- bs秩为 2 的数组(‘F’),边界为 (n,n),存储为 b
- alpha秩为 1 的数组(‘F’),边界为 (n)
- beta秩为 1 的数组(‘F’),边界为 (n)
- qs秩为 2 的数组(‘F’),边界为 (n,n),存储为 q
- zs秩为 2 的数组(‘F’),边界为 (n,n),存储为 z
- mint
- plfloat
- prfloat
- dif秩为 1 的数组(‘f’),边界为 (2)
- infoint
- 其他参数:
- ijob输入 int,可选
默认值:4
- wantq输入 int,可选
默认值:1
- wantz输入 int,可选
默认值:1
- overwrite_a输入 int,可选
默认值:0
- overwrite_b输入 int,可选
默认值:0
- overwrite_q输入 int,可选
默认值:0
- overwrite_z输入 int,可选
默认值:0
- lwork输入 int,可选
默认值: (ijob==0?1:n+2)
- liwork输入 int,可选
默认值: (ijob==0?1:n+2)