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 sgbtrs - module scipy.linalg.lapack

Signature de la fonction sgbtrs

Description

sgbtrs.__doc__

x,info = sgbtrs(ab,kl,ku,b,ipiv,[trans,n,ldab,ldb,overwrite_b])

Wrapper for ``sgbtrs``.

Parameters
----------
ab : input rank-2 array('f') with bounds (ldab,n)
kl : input int
ku : input int
b : input rank-2 array('f') with bounds (ldb,nrhs)
ipiv : input rank-1 array('i') with bounds (n)

Other Parameters
----------------
overwrite_b : input int, optional
    Default: 0
trans : input int, optional
    Default: 0
n : input int, optional
    Default: shape(ab,1)
ldab : input int, optional
    Default: shape(ab,0)
ldb : input int, optional
    Default: shape(b,0)

Returns
-------
x : rank-2 array('f') with bounds (ldb,nrhs) and b storage
info : int