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

Signature de la fonction chetrd

Description

chetrd.__doc__

c,d,e,tau,info = chetrd(a,[lower,lwork,overwrite_a])

Wrapper for ``chetrd``.

Parameters
----------
a : input rank-2 array('F') with bounds (lda,n)

Other Parameters
----------------
lower : input int, optional
    Default: 0
overwrite_a : input int, optional
    Default: 0
lwork : input int, optional
    Default: MAX(n,1)

Returns
-------
c : rank-2 array('F') with bounds (lda,n) and a storage
d : rank-1 array('f') with bounds (n)
e : rank-1 array('f') with bounds (n - 1)
tau : rank-1 array('F') with bounds (n - 1)
info : int