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

Signature de la fonction dgelss

Description

dgelss.__doc__

v,x,s,rank,work,info = dgelss(a,b,[cond,lwork,overwrite_a,overwrite_b])

Wrapper for ``dgelss``.

Parameters
----------
a : input rank-2 array('d') with bounds (m,n)
b : input rank-2 array('d') with bounds (maxmn,nrhs)

Other Parameters
----------------
overwrite_a : input int, optional
    Default: 0
overwrite_b : input int, optional
    Default: 0
cond : input float, optional
    Default: -1.0
lwork : input int, optional
    Default: max(3*minmn+MAX(2*minmn,MAX(maxmn,nrhs)),1)

Returns
-------
v : rank-2 array('d') with bounds (m,n) and a storage
x : rank-2 array('d') with bounds (maxmn,nrhs) and b storage
s : rank-1 array('d') with bounds (minmn)
rank : int
work : rank-1 array('d') with bounds (MAX(lwork,1))
info : int