Package org.ejml.sparse.csc.misc
Class ColumnCounts_FSCC
java.lang.Object
org.ejml.sparse.csc.misc.ColumnCounts_FSCC
@Generated("org.ejml.sparse.csc.misc.ColumnCounts_DSCC")
public class ColumnCounts_FSCC
extends Object
Computes the column counts of the upper triangular portion of L as in L*LT=A. Useful in Cholesky
decomposition.
See cs_counts() on page 55
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
process
(FMatrixSparseCSC A, int[] parent, int[] post, int[] counts) Processes and computes column counts of A
-
Constructor Details
-
ColumnCounts_FSCC
public ColumnCounts_FSCC(boolean ata) Configures column count algorithm.- Parameters:
ata
- flag used to indicate if the cholesky factor of A or ATA is to be computed.
-
-
Method Details
-
process
Processes and computes column counts of A- Parameters:
A
- (Input) Upper triangular matrixparent
- (Input) Elimination tree.post
- (Input) Post order permutation of elimination tree. SeeTriangularSolver_FSCC.postorder(int[], int, int[], org.ejml.data.IGrowArray)
counts
- (Output) Storage for column counts.
-