コード例 #1
0
ファイル: sparsemat.py プロジェクト: mortezah/PyMFEM
 def EliminateCols(self, cols, x=None, b=None):
     """
     EliminateCols(SparseMatrix self, intArray cols, Vector x=None, Vector b=None)
     EliminateCols(SparseMatrix self, intArray cols, Vector x=None)
     EliminateCols(SparseMatrix self, intArray cols)
     """
     return _sparsemat.SparseMatrix_EliminateCols(self, cols, x, b)
コード例 #2
0
 def EliminateCols(self, cols, x=None, b=None):
     return _sparsemat.SparseMatrix_EliminateCols(self, cols, x, b)
コード例 #3
0
ファイル: sparsemat.py プロジェクト: mfem/PyMFEM
 def EliminateCols(self, *args):
     r"""
     EliminateCols(SparseMatrix self, intArray cols, Vector x=None, Vector b=None)
     EliminateCols(SparseMatrix self, intArray col_marker, SparseMatrix Ae)
     """
     return _sparsemat.SparseMatrix_EliminateCols(self, *args)