本文簡要介紹 python 語言中 scipy.linalg.lapack.sgees
的用法。
用法:
scipy.linalg.lapack.sgees(sselect, a [, compute_v, sort_t, lwork, sselect_extra_args, overwrite_a ]) = <fortran object>#
sgees
的包裝器。- sselect: call-back函數
- a: 輸入 rank-2 數組(‘f’),邊界為 (n,n)
- t: rank-2 數組(‘f’) 具有邊界 (n,n) 和存儲
- sdim: int
- wr: rank-1 數組(‘f’),有邊界(n)
- wi: rank-1 數組(‘f’),有邊界(n)
- vs: rank-2 數組(‘f’) 有邊界 (ldvs,n)
- work: 具有邊界 (MAX(lwork, 1)) 的 1 級數組(‘f’)
- info: int
- compute_v: 輸入 int,可選
默認值:1
- sort_t: 輸入 int,可選
默認值:0
- sselect_extra_args: 輸入元組,可選
默認: ()
- overwrite_a: 輸入 int,可選
默認值:0
- lwork: 輸入 int,可選
默認值:最大值(3*n,1)
參數 ::
返回 ::
其他參數 ::
注意:
Call-back 函數:
def sselect(arg1,arg2): return sselect Required arguments: arg1 : input float arg2 : input float Return objects: sselect : int
相關用法
- Python SciPy lapack.sgges用法及代碼示例
- Python SciPy lapack.cgees用法及代碼示例
- Python SciPy lapack.zgges用法及代碼示例
- Python SciPy lapack.dgees用法及代碼示例
- Python SciPy lapack.get_lapack_funcs用法及代碼示例
- Python SciPy lapack.zgees用法及代碼示例
- Python SciPy lapack.cgges用法及代碼示例
- Python SciPy lapack.dgges用法及代碼示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代碼示例
- Python SciPy linalg.cdf2rdf用法及代碼示例
- Python SciPy linalg.LaplacianNd用法及代碼示例
- Python SciPy linalg.solve_circulant用法及代碼示例
- Python SciPy linalg.polar用法及代碼示例
- Python SciPy linalg.clarkson_woodruff_transform用法及代碼示例
- Python SciPy linalg.rsf2csf用法及代碼示例
- Python SciPy linalg.hessenberg用法及代碼示例
- Python SciPy linalg.tril用法及代碼示例
- Python SciPy linalg.triu用法及代碼示例
- Python SciPy linalg.svd用法及代碼示例
- Python SciPy linalg.ishermitian用法及代碼示例
- Python SciPy linalg.invhilbert用法及代碼示例
- Python SciPy linalg.factorized用法及代碼示例
- Python SciPy linalg.lu_factor用法及代碼示例
- Python SciPy linalg.SuperLU用法及代碼示例
- Python SciPy linalg.lsqr用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.linalg.lapack.sgees。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。