示例#1
0
 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)