scipy.linalg.lapack.sgees¶
-
scipy.linalg.lapack.
sgees
(sselect, a[, compute_v, sort_t, lwork, sselect_extra_args, overwrite_a]) = <fortran object>¶ Wrapper for
sgees
.Parameters: sselect : call-back function
a : input rank-2 array(‘f’) with bounds (n,n)
Returns: t : rank-2 array(‘f’) with bounds (n,n) and a storage
sdim : int
wr : rank-1 array(‘f’) with bounds (n)
wi : rank-1 array(‘f’) with bounds (n)
vs : rank-2 array(‘f’) with bounds (ldvs,n)
work : rank-1 array(‘f’) with bounds (MAX(lwork,1))
info : int
Other Parameters: compute_v : input int, optional
Default: 1
sort_t : input int, optional
Default: 0
sselect_extra_args : input tuple, optional
Default: ()
overwrite_a : input int, optional
Default: 0
lwork : input int, optional
Default: 3*n
Notes
Call-back functions:
def sselect(arg1,arg2): return sselect Required arguments: arg1 : input float arg2 : input float Return objects: sselect : int