public class DoubleSparseMatrix extends Object
| Constructor and Description | 
|---|
| DoubleSparseMatrix(int numRows)Create a new matrix with the given number of rows. | 
| Modifier and Type | Method and Description | 
|---|---|
| double | get(int i,
   int j)Get a specific entry of the matrix. | 
| int | getNumRows()Get the number of rows in the matrix. | 
| void | initialize()Create a empty matrix with all values set to 0.0 | 
| void | set(int i,
   int j,
   double v)Set a specific entry of the matrix. | 
public DoubleSparseMatrix(int numRows)
numRows - the number of rows.public void initialize()
public int getNumRows()
public double get(int i,
                  int j)
i - the rowj - the columnpublic void set(int i,
                int j,
                double v)
i - the rowj - the columnv - the value of the entryCopyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.