Package org.hipparchus.linear
Class OpenMapRealMatrix
- java.lang.Object
-
- org.hipparchus.linear.AbstractRealMatrix
-
- org.hipparchus.linear.OpenMapRealMatrix
-
- All Implemented Interfaces:
Serializable
,AnyMatrix
,RealLinearOperator
,RealMatrix
,SparseRealMatrix
public class OpenMapRealMatrix extends AbstractRealMatrix implements SparseRealMatrix, Serializable
Sparse matrix implementation based on an open addressed map.Caveat: This implementation assumes that, for any
x
, the equalityx * 0d == 0d
holds. But it is is not true forNaN
. Moreover, zero entries will lose their sign. Some operations (that involveNaN
and/or infinities) may thus give incorrect results.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OpenMapRealMatrix(int rowDimension, int columnDimension)
Build a sparse matrix with the supplied row and column dimensions.OpenMapRealMatrix(OpenMapRealMatrix matrix)
Build a matrix by copying another one.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OpenMapRealMatrix
add(OpenMapRealMatrix m)
Compute the sum of this matrix andm
.void
addToEntry(int row, int column, double increment)
Adds (in place) the specified value to the specified entry ofthis
matrix.OpenMapRealMatrix
copy()
Returns a (deep) copy of this.OpenMapRealMatrix
createMatrix(int rowDimension, int columnDimension)
Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.int
getColumnDimension()
Returns the number of columns of this matrix.double
getEntry(int row, int column)
Get the entry in the specified row and column.int
getRowDimension()
Returns the number of rows of this matrix.OpenMapRealMatrix
multiply(OpenMapRealMatrix m)
Postmultiply this matrix bym
.RealMatrix
multiply(RealMatrix m)
Returns the result of postmultiplyingthis
bym
.void
multiplyEntry(int row, int column, double factor)
Multiplies (in place) the specified entry ofthis
matrix by the specified value.RealMatrix
multiplyTransposed(RealMatrix m)
Returns the result of postmultiplyingthis
bym^T
.void
setEntry(int row, int column, double value)
Set the entry in the specified row and column.OpenMapRealMatrix
subtract(OpenMapRealMatrix m)
Subtractm
from this matrix.OpenMapRealMatrix
subtract(RealMatrix m)
Returnsthis
minusm
.RealMatrix
transposeMultiply(RealMatrix m)
Returns the result of postmultiplyingthis^T
bym
.-
Methods inherited from class org.hipparchus.linear.AbstractRealMatrix
add, copySubMatrix, copySubMatrix, equals, getColumn, getColumnMatrix, getColumnVector, getData, getFrobeniusNorm, getNorm, getRow, getRowMatrix, getRowVector, getSubMatrix, getSubMatrix, getTrace, hashCode, isSquare, operate, operate, power, preMultiply, preMultiply, preMultiply, scalarAdd, scalarMultiply, setColumn, setColumnMatrix, setColumnVector, setRow, setRowMatrix, setRowVector, setSubMatrix, toString, transpose, walkInColumnOrder, walkInColumnOrder, walkInColumnOrder, walkInColumnOrder, walkInOptimizedOrder, walkInOptimizedOrder, walkInOptimizedOrder, walkInOptimizedOrder, walkInRowOrder, walkInRowOrder, walkInRowOrder, walkInRowOrder
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.hipparchus.linear.RealLinearOperator
isTransposable, operateTranspose
-
Methods inherited from interface org.hipparchus.linear.RealMatrix
add, copySubMatrix, copySubMatrix, getColumn, getColumnMatrix, getColumnVector, getData, getFrobeniusNorm, getNorm, getRow, getRowMatrix, getRowVector, getSubMatrix, getSubMatrix, getTrace, operate, operate, power, preMultiply, preMultiply, preMultiply, scalarAdd, scalarMultiply, setColumn, setColumnMatrix, setColumnVector, setRow, setRowMatrix, setRowVector, setSubMatrix, transpose, walkInColumnOrder, walkInColumnOrder, walkInColumnOrder, walkInColumnOrder, walkInOptimizedOrder, walkInOptimizedOrder, walkInOptimizedOrder, walkInOptimizedOrder, walkInRowOrder, walkInRowOrder, walkInRowOrder, walkInRowOrder
-
-
-
-
Constructor Detail
-
OpenMapRealMatrix
public OpenMapRealMatrix(int rowDimension, int columnDimension) throws MathIllegalArgumentException
Build a sparse matrix with the supplied row and column dimensions.- Parameters:
rowDimension
- Number of rows of the matrix.columnDimension
- Number of columns of the matrix.- Throws:
MathIllegalArgumentException
- if row or column dimension is not positive.MathIllegalArgumentException
- if the total number of entries of the matrix is larger thanInteger.MAX_VALUE
.
-
OpenMapRealMatrix
public OpenMapRealMatrix(OpenMapRealMatrix matrix)
Build a matrix by copying another one.- Parameters:
matrix
- matrix to copy.
-
-
Method Detail
-
copy
public OpenMapRealMatrix copy()
Returns a (deep) copy of this.- Specified by:
copy
in interfaceRealMatrix
- Specified by:
copy
in classAbstractRealMatrix
- Returns:
- matrix copy
-
createMatrix
public OpenMapRealMatrix createMatrix(int rowDimension, int columnDimension) throws MathIllegalArgumentException
Create a new RealMatrix of the same type as the instance with the supplied row and column dimensions.- Specified by:
createMatrix
in interfaceRealMatrix
- Specified by:
createMatrix
in classAbstractRealMatrix
- Parameters:
rowDimension
- the number of rows in the new matrixcolumnDimension
- the number of columns in the new matrix- Returns:
- a new matrix of the same type as the instance
- Throws:
MathIllegalArgumentException
- if the total number of entries of the matrix is larger thanInteger.MAX_VALUE
.
-
getColumnDimension
public int getColumnDimension()
Returns the number of columns of this matrix.- Specified by:
getColumnDimension
in interfaceAnyMatrix
- Specified by:
getColumnDimension
in interfaceRealLinearOperator
- Specified by:
getColumnDimension
in classAbstractRealMatrix
- Returns:
- the number of columns.
-
add
public OpenMapRealMatrix add(OpenMapRealMatrix m) throws MathIllegalArgumentException
Compute the sum of this matrix andm
.- Parameters:
m
- Matrix to be added.- Returns:
this
+m
.- Throws:
MathIllegalArgumentException
- ifm
is not the same size asthis
.
-
subtract
public OpenMapRealMatrix subtract(RealMatrix m) throws MathIllegalArgumentException
Returnsthis
minusm
.- Specified by:
subtract
in interfaceRealMatrix
- Overrides:
subtract
in classAbstractRealMatrix
- Parameters:
m
- matrix to be subtracted- Returns:
this - m
- Throws:
MathIllegalArgumentException
- ifm
is not the same size asthis
.
-
subtract
public OpenMapRealMatrix subtract(OpenMapRealMatrix m) throws MathIllegalArgumentException
Subtractm
from this matrix.- Parameters:
m
- Matrix to be subtracted.- Returns:
this
-m
.- Throws:
MathIllegalArgumentException
- ifm
is not the same size asthis
.
-
multiply
public RealMatrix multiply(RealMatrix m) throws MathIllegalArgumentException
Returns the result of postmultiplyingthis
bym
.- Specified by:
multiply
in interfaceRealMatrix
- Overrides:
multiply
in classAbstractRealMatrix
- Parameters:
m
- matrix to postmultiply by- Returns:
this * m
- Throws:
MathIllegalArgumentException
- ifm
is anOpenMapRealMatrix
, and the total number of entries of the product is larger thanInteger.MAX_VALUE
.
-
multiplyTransposed
public RealMatrix multiplyTransposed(RealMatrix m) throws MathIllegalArgumentException
Returns the result of postmultiplyingthis
bym^T
.This is equivalent to call
multiply
(m.RealMatrix.transpose()
), but some implementations may avoid building the intermediate transposed matrix.- Specified by:
multiplyTransposed
in interfaceRealMatrix
- Parameters:
m
- matrix to first transpose and second postmultiply by- Returns:
this * m^T
- Throws:
MathIllegalArgumentException
- ifm
is anOpenMapRealMatrix
, and the total number of entries of the product is larger thanInteger.MAX_VALUE
.
-
transposeMultiply
public RealMatrix transposeMultiply(RealMatrix m) throws MathIllegalArgumentException
Returns the result of postmultiplyingthis^T
bym
.This is equivalent to call
RealMatrix.transpose()
.multiply(m)
, but some implementations may avoid building the intermediate transposed matrix.- Specified by:
transposeMultiply
in interfaceRealMatrix
- Parameters:
m
- matrix to postmultiply by- Returns:
this^T * m
- Throws:
MathIllegalArgumentException
- ifm
is anOpenMapRealMatrix
, and the total number of entries of the product is larger thanInteger.MAX_VALUE
.
-
multiply
public OpenMapRealMatrix multiply(OpenMapRealMatrix m) throws MathIllegalArgumentException
Postmultiply this matrix bym
.- Parameters:
m
- Matrix to postmultiply by.- Returns:
this
*m
.- Throws:
MathIllegalArgumentException
- if the number of rows ofm
differ from the number of columns ofthis
matrix.MathIllegalArgumentException
- if the total number of entries of the product is larger thanInteger.MAX_VALUE
.
-
getEntry
public double getEntry(int row, int column) throws MathIllegalArgumentException
Get the entry in the specified row and column. Row and column indices start at 0.- Specified by:
getEntry
in interfaceRealMatrix
- Specified by:
getEntry
in classAbstractRealMatrix
- Parameters:
row
- Row index of entry to be fetched.column
- Column index of entry to be fetched.- Returns:
- the matrix entry at
(row, column)
. - Throws:
MathIllegalArgumentException
- if the row or column index is not valid.
-
getRowDimension
public int getRowDimension()
Returns the number of rows of this matrix.- Specified by:
getRowDimension
in interfaceAnyMatrix
- Specified by:
getRowDimension
in interfaceRealLinearOperator
- Specified by:
getRowDimension
in classAbstractRealMatrix
- Returns:
- the number of rows.
-
setEntry
public void setEntry(int row, int column, double value) throws MathIllegalArgumentException
Set the entry in the specified row and column. Row and column indices start at 0.- Specified by:
setEntry
in interfaceRealMatrix
- Specified by:
setEntry
in classAbstractRealMatrix
- Parameters:
row
- Row index of entry to be set.column
- Column index of entry to be set.value
- the new value of the entry.- Throws:
MathIllegalArgumentException
- if the row or column index is not valid
-
addToEntry
public void addToEntry(int row, int column, double increment) throws MathIllegalArgumentException
Adds (in place) the specified value to the specified entry ofthis
matrix. Row and column indices start at 0.- Specified by:
addToEntry
in interfaceRealMatrix
- Overrides:
addToEntry
in classAbstractRealMatrix
- Parameters:
row
- Row index of the entry to be modified.column
- Column index of the entry to be modified.increment
- value to add to the matrix entry.- Throws:
MathIllegalArgumentException
- if the row or column index is not valid.
-
multiplyEntry
public void multiplyEntry(int row, int column, double factor) throws MathIllegalArgumentException
Multiplies (in place) the specified entry ofthis
matrix by the specified value. Row and column indices start at 0.- Specified by:
multiplyEntry
in interfaceRealMatrix
- Overrides:
multiplyEntry
in classAbstractRealMatrix
- Parameters:
row
- Row index of the entry to be modified.column
- Column index of the entry to be modified.factor
- Multiplication factor for the matrix entry.- Throws:
MathIllegalArgumentException
- if the row or column index is not valid.
-
-