GeneralBrokenLines V03-01-02
gblpy
|
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 | |
Bordered band matrix.
Definition in file gblnum.py.