SciPy

scipy.linalg.lapack.dgees

scipy.linalg.lapack.dgees(dselect, a[, compute_v, sort_t, lwork, dselect_extra_args, overwrite_a]) = <fortran object>

Wrapper for dgees.

Parameters
dselectcall-back function
ainput rank-2 array(‘d’) with bounds (n,n)
Returns
trank-2 array(‘d’) with bounds (n,n) and a storage
sdimint
wrrank-1 array(‘d’) with bounds (n)
wirank-1 array(‘d’) with bounds (n)
vsrank-2 array(‘d’) with bounds (ldvs,n)
workrank-1 array(‘d’) with bounds (MAX(lwork,1))
infoint
Other Parameters
compute_vinput int, optional

Default: 1

sort_tinput int, optional

Default: 0

dselect_extra_argsinput tuple, optional

Default: ()

overwrite_ainput int, optional

Default: 0

lworkinput int, optional

Default: max(3*n,1)

Notes

Call-back functions:

def dselect(arg1,arg2): return dselect
Required arguments:
  arg1 : input float
  arg2 : input float
Return objects:
  dselect : int

Previous topic

scipy.linalg.lapack.sgees

Next topic

scipy.linalg.lapack.cgees