public class SymmetricMatrixInverterDM
public SymmetricMatrixInverterDM(DoubleMatrix symmetricMatrix)
public DoubleMatrix getInverse(kotlin.Array[] exclude)
Calculates a new inverse when rows/columns of the original matrix have been removed. Each element of exclude corresponds to a row/column of the matrix. If exclude is true, then that row/column in removed.
exclude - a boolean array with number of elements equal to the dimension of the original matrix.public DoubleMatrix getInverse(BitSet exclude, int size)
Calculates a new inverse when rows/columns of the original matrix have been removed. Each element of exclude corresponds to a row/column of the matrix. If exclude is true, then that row/column in removed.
exclude - a BitSet with number of elements equal to the dimension of the original matrix.size - the number of elements