GeneralBrokenLines V03-00-00
gblpy
Classes | Namespaces | Functions | Variables
gblnum.py File Reference

Bordered band matrix. More...

Go to the source code of this file.

Classes

class  gblpy.gblnum.BorderedBandMatrix
 (Symmetric) Bordered Band Matrix. More...
 

Namespaces

namespace  gblpy
 
namespace  gblpy.gblnum
 

Functions

def gblpy.gblnum.decomposeBand ()
 
def gblpy.gblnum.solveBand (aRightHandSide)
 Solve linear equation system for band part. More...
 
def gblpy.gblnum.invertBand ()
 Invert band part. More...
 
def gblpy.gblnum.bandOfAVAT (anArray, aSymArray)
 Calculate band part of A*V*A^T. More...
 

Variables

 gblpy.gblnum.nBorder = self.__numBorder
 
 gblpy.gblnum.nCol = self.__numCol
 
 gblpy.gblnum.aSolution = np.empty(nBorder + nCol)
 
 gblpy.gblnum.auxMat = np.empty((nBorder, nCol))
 
 gblpy.gblnum.auxMatT = auxMat.T
 
 gblpy.gblnum.auxVec = aRightHandSide[:nBorder] - np.dot(auxMat, aRightHandSide[nBorder:])
 
 gblpy.gblnum.invBorder = np.linalg.inv(self.__border - np.dot(self.__mixed, auxMatT))
 
 gblpy.gblnum.__border
 
 gblpy.gblnum.__mixed
 
 gblpy.gblnum.__band
 

Detailed Description

Bordered band matrix.

Author
Claus Kleinwort, DESY, 2011 (Claus.nosp@m..Kle.nosp@m.inwor.nosp@m.t@de.nosp@m.sy.de)

Definition in file gblnum.py.