Class SparseMatrix
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<SparseMatrix.Entry>
Operations using standard dense matrix structures and algorithms are slow and consume large amounts of memory when applied to large sparse matrices. Indeed, some very large sparse matrices are infeasible to manipulate with the standard dense algorithms. Sparse data is by nature easily compressed, and this compression almost always results in significantly less computer data storage usage.
This class employs Harwell-Boeing column-compressed sparse matrix format. Nonzero values are stored in an array (top-to-bottom, then left-to-right-bottom). The row indices corresponding to the values are also stored. Besides, a list of pointers are indexes where each column starts. This format is efficient for arithmetic operations, column slicing, and matrix-vector products. One typically uses SparseDataset for construction of SparseMatrix.
For iteration through the elements of a matrix, this class provides a functional API to iterate through the non-zero elements. This iteration can be done by passing a lambda to be called on each non-zero element or by processing a stream of objects representing each non-zero element. The direct functional API is faster (and is about as fast as writing the low-level loops against the internals of the matrix itself) while the streaming interface is more flexible.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionclass
Encapsulates an entry in a matrix for use in streaming.Nested classes/interfaces inherited from class smile.math.matrix.fp32.IMatrix
IMatrix.Preconditioner
-
Constructor Summary
ConstructorDescriptionSparseMatrix
(float[][] A) Constructor.SparseMatrix
(float[][] A, float tol) Constructor.SparseMatrix
(int m, int n, float[] nonzeros, int[] rowIndex, int[] colIndex) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionaat()
ReturnsA * A'
.ata()
ReturnsA' * A
.clone()
float[]
diag()
Returns the diagonal elements.void
forEachNonZero
(int beginColumn, int endColumn, FloatConsumer consumer) For each loop on non-zero elements.float
get
(int index) Returns the element at the storage index.float
get
(int i, int j) ReturnsA[i,j]
.static SparseMatrix
Reads a sparse matrix from a Harwell-Boeing Exchange Format file.iterator()
Returns the iterator of nonzero entries.iterator
(int beginColumn, int endColumn) Returns the iterator of nonzero entries.mm
(SparseMatrix B) Returns the matrix multiplication C = A * B.void
mv
(float[] work, int inputOffset, int outputOffset) Matrix-vector multiplicationA * x
.void
Matrix-vector multiplication.int
ncol()
Returns the number of columns.nonzeros()
Returns the stream of the non-zero elements.nonzeros
(int beginColumn, int endColumn) Returns the stream of the non-zero elements in given column range.int
nrow()
Returns the number of rows.static SparseMatrix
rutherford
(Path path) Reads a sparse matrix from a Rutherford-Boeing Exchange Format file.void
set
(int index, float value) Sets the element at the storage index.void
set
(int i, int j, float x) SetsA[i,j] = x
.long
size()
Returns the number of stored matrix elements.static SparseMatrix
Reads a sparse matrix from a text file.Returns the transpose of matrix.void
tv
(float[] work, int inputOffset, int outputOffset) Matrix-vector multiplicationA' * x
.Methods inherited from class smile.math.matrix.fp32.IMatrix
apply, colName, colNames, colNames, eigen, eigen, Jacobi, market, mv, mv, mv, rowName, rowNames, rowNames, solve, solve, square, toString, toString, toString, trace, tv, tv, tv, update
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
SparseMatrix
public SparseMatrix(int m, int n, float[] nonzeros, int[] rowIndex, int[] colIndex) Constructor.- Parameters:
m
- the number of rows in the matrix.n
- the number of columns in the matrix.nonzeros
- the array of nonzero values stored column by column.rowIndex
- the row indices of nonzero values.colIndex
- the index of the start of columns.
-
SparseMatrix
public SparseMatrix(float[][] A) Constructor.- Parameters:
A
- a dense matrix to converted into sparse matrix format.
-
SparseMatrix
public SparseMatrix(float[][] A, float tol) Constructor.- Parameters:
A
- a dense matrix to converted into sparse matrix format.tol
- the tolerance to regard a value as zero if|x| < tol
.
-
-
Method Details
-
clone
-
nrow
public int nrow()Description copied from class:IMatrix
Returns the number of rows. -
ncol
public int ncol()Description copied from class:IMatrix
Returns the number of columns. -
size
public long size()Description copied from class:IMatrix
Returns the number of stored matrix elements. For conventional matrix, it is simply nrow * ncol. But it is usually much less for band, packed or sparse matrix. -
nonzeros
Returns the stream of the non-zero elements.- Returns:
- the stream of the non-zero elements
-
nonzeros
Returns the stream of the non-zero elements in given column range.- Parameters:
beginColumn
- the beginning column, inclusive.endColumn
- the end column, exclusive.- Returns:
- the stream of non-zero elements.
-
iterator
Returns the iterator of nonzero entries.- Specified by:
iterator
in interfaceIterable<SparseMatrix.Entry>
- Returns:
- the iterator of nonzero entries
-
iterator
Returns the iterator of nonzero entries.- Parameters:
beginColumn
- the beginning column, inclusive.endColumn
- the end column, exclusive.- Returns:
- the iterator of nonzero entries
-
forEachNonZero
For each loop on non-zero elements. This will be a bit faster than iterator or stream by avoiding boxing. But it will be considerably less general.Note that the consumer could be called on values that are either effectively or actually zero. The only guarantee is that no values that are known to be zero based on the structure of the matrix will be processed.
- Parameters:
beginColumn
- The beginning column, inclusive.endColumn
- The end column, exclusive.consumer
- The matrix element consumer.
-
get
public float get(int index) Returns the element at the storage index.- Parameters:
index
- the storage index.- Returns:
- the element.
-
set
public void set(int index, float value) Sets the element at the storage index.- Parameters:
index
- the storage index.value
- the element.
-
get
public float get(int i, int j) Description copied from class:IMatrix
ReturnsA[i,j]
. -
set
public void set(int i, int j, float x) Description copied from class:IMatrix
SetsA[i,j] = x
. -
mv
Description copied from class:IMatrix
Matrix-vector multiplication.
where op is the transpose operation.y = alpha * op(A) * x + beta * y
-
mv
public void mv(float[] work, int inputOffset, int outputOffset) Description copied from class:IMatrix
Matrix-vector multiplicationA * x
. -
tv
public void tv(float[] work, int inputOffset, int outputOffset) Description copied from class:IMatrix
Matrix-vector multiplicationA' * x
. -
transpose
Returns the transpose of matrix.- Returns:
- the transpose of matrix.
-
mm
Returns the matrix multiplication C = A * B.- Parameters:
B
- the operand.- Returns:
- the multiplication.
-
ata
ReturnsA' * A
.- Returns:
A' * A
-
aat
ReturnsA * A'
.- Returns:
A * A'
-
diag
public float[] diag()Description copied from class:IMatrix
Returns the diagonal elements. -
harwell
Reads a sparse matrix from a Harwell-Boeing Exchange Format file. For details, see http://people.sc.fsu.edu/~jburkardt/data/hb/hb.html.Note that our implementation supports only real-valued matrix, and we ignore the optional supplementary data (e.g. right hand side vectors).
- Parameters:
path
- the input file path.- Returns:
- the matrix.
- Throws:
IOException
- when fails to read the file.
-
rutherford
Reads a sparse matrix from a Rutherford-Boeing Exchange Format file. The Rutherford Boeing format is an updated more flexible version of the Harwell Boeing format. For details, see http://people.sc.fsu.edu/~jburkardt/data/rb/rb.html. Especially, the supplementary data in the form of right-hand sides, estimates or solutions are treated as separate files.Note that our implementation supports only real-valued matrix, and we ignore the optional supplementary data (e.g. right hand side vectors).
- Parameters:
path
- the input file path.- Returns:
- the matrix.
- Throws:
IOException
- when fails to read the file.
-
text
Reads a sparse matrix from a text file. The first line contains three integers, which are the number of rows, the number of columns, and the number of nonzero entries in the matrix.Following the first line, there are m + 1 integers that are the indices of columns, where m is the number of columns. Then there are n integers that are the row indices of nonzero entries, where n is the number of nonzero entries. Finally, there are n float numbers that are the values of nonzero entries.
- Parameters:
path
- the input file path.- Returns:
- the matrix.
- Throws:
IOException
- when fails to read the file.
-