Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « scipy.linalg.lapack »

Fonction sgegv - module scipy.linalg.lapack

Signature de la fonction sgegv

def sgegv(*args, **kwds) 

Description

sgegv.__doc__

`sgegv` is deprecated!
The `*gegv` family of routines has been deprecated in
LAPACK 3.6.0 in favor of the `*ggev` family of routines.
The corresponding wrappers will be removed from SciPy in
a future release.

alphar,alphai,beta,vl,vr,info = sgegv(a,b,[compute_vl,compute_vr,lwork,overwrite_a,overwrite_b])

Wrapper for ``sgegv``.

Parameters
----------
a : input rank-2 array('f') with bounds (n,n)
b : input rank-2 array('f') with bounds (n,n)

Other Parameters
----------------
compute_vl : input int, optional
    Default: 1
compute_vr : input int, optional
    Default: 1
overwrite_a : input int, optional
    Default: 0
overwrite_b : input int, optional
    Default: 0
lwork : input int, optional
    Default: max(8*n,1)

Returns
-------
alphar : rank-1 array('f') with bounds (n)
alphai : rank-1 array('f') with bounds (n)
beta : rank-1 array('f') with bounds (n)
vl : rank-2 array('f') with bounds (ldvl,n)
vr : rank-2 array('f') with bounds (ldvr,n)
info : int