Package org.hipparchus.linear
Class SparseFieldVector<T extends FieldElement<T>>
java.lang.Object
org.hipparchus.linear.SparseFieldVector<T>
- Type Parameters:
T
- the type of the field elements
- All Implemented Interfaces:
Serializable
,FieldVector<T>
public class SparseFieldVector<T extends FieldElement<T>>
extends Object
implements FieldVector<T>, Serializable
This class implements the
FieldVector
interface with a OpenIntToFieldHashMap
backing store.
Caveat: This implementation assumes that, for any x
,
the equality x * 0d == 0d
holds. But it is is not true for
NaN
. Moreover, zero entries will lose their sign.
Some operations (that involve NaN
and/or infinities) may
thus give incorrect results.
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionSparseFieldVector
(Field<T> field) Build a 0-length vector.SparseFieldVector
(Field<T> field, int dimension) Construct a vector of zeroes.SparseFieldVector
(Field<T> field, int dimension, int expectedSize) Build a vector with known the sparseness (for advanced use only).SparseFieldVector
(Field<T> field, T[] values) Create from a Field array.Copy constructor.protected
SparseFieldVector
(SparseFieldVector<T> v, int resize) Build a resized vector, for use with append. -
Method Summary
Modifier and TypeMethodDescriptionadd
(FieldVector<T> v) Compute the sum ofthis
andv
.add
(SparseFieldVector<T> v) Optimized method to add sparse vectors.append
(FieldVector<T> v) Construct a vector by appending a vector to this vector.append
(SparseFieldVector<T> v) Construct a vector by appending a vector to this vector.Construct a vector by appending a T to this vector.protected void
checkVectorDimensions
(int n) Check if instance dimension is equal to some expected value.copy()
Returns a (deep) copy of this.dotProduct
(FieldVector<T> v) Compute the dot product.ebeDivide
(FieldVector<T> v) Element-by-element division.ebeMultiply
(FieldVector<T> v) Element-by-element multiplication.boolean
int
Returns the size of the vector.getEntry
(int index) Returns the entry in the specified index.getField()
Get the type of field elements of the vector.getSubVector
(int index, int n) Get a subvector from consecutive elements.int
hashCode()
Map an addition operation to each entry.mapAddToSelf
(T d) Map an addition operation to each entry.Map a division operation to each entry.mapDivideToSelf
(T d) Map a division operation to each entry.mapInv()
Map the 1/x function to each entry.Map the 1/x function to each entry.mapMultiply
(T d) Map a multiplication operation to each entry.Map a multiplication operation to each entry.mapSubtract
(T d) Map a subtraction operation to each entry.Map a subtraction operation to each entry.outerProduct
(FieldVector<T> v) Compute the outer product.Optimized method to compute outer product when both vectors are sparse.projection
(FieldVector<T> v) Find the orthogonal projection of this vector onto another vector.void
Set all elements to a single value.void
Set a single element.void
setSubVector
(int index, FieldVector<T> v) Set a set of consecutive elements.subtract
(FieldVector<T> v) Computethis
minusv
.Optimized method to computethis
minusv
.T[]
toArray()
Convert the vector to a T array.walkInDefaultOrder
(FieldVectorChangingVisitor<T> visitor) Visits (and possibly alters) all entries of this vector in default order (increasing index).walkInDefaultOrder
(FieldVectorChangingVisitor<T> visitor, int start, int end) Visits (and possibly alters) some entries of this vector in default order (increasing index).walkInDefaultOrder
(FieldVectorPreservingVisitor<T> visitor) Visits (but does not alter) all entries of this vector in default order (increasing index).walkInDefaultOrder
(FieldVectorPreservingVisitor<T> visitor, int start, int end) Visits (but does not alter) some entries of this vector in default order (increasing index).walkInOptimizedOrder
(FieldVectorChangingVisitor<T> visitor) Visits (and possibly alters) all entries of this vector in optimized order.walkInOptimizedOrder
(FieldVectorChangingVisitor<T> visitor, int start, int end) Visits (and possibly change) some entries of this vector in optimized order.Visits (but does not alter) all entries of this vector in optimized order.walkInOptimizedOrder
(FieldVectorPreservingVisitor<T> visitor, int start, int end) Visits (but does not alter) some entries of this vector in optimized order.
-
Constructor Details
-
SparseFieldVector
Build a 0-length vector. Zero-length vectors may be used to initialize construction of vectors by data gathering. We start with zero-length and use either theSparseFieldVector(SparseFieldVector, int)
constructor or one of theappend
method (append(FieldVector)
orappend(SparseFieldVector)
) to gather data into this vector.- Parameters:
field
- Field to which the elements belong.
-
SparseFieldVector
Construct a vector of zeroes.- Parameters:
field
- Field to which the elements belong.dimension
- Size of the vector.
-
SparseFieldVector
Build a resized vector, for use with append.- Parameters:
v
- Original vectorresize
- Amount to add.
-
SparseFieldVector
Build a vector with known the sparseness (for advanced use only).- Parameters:
field
- Field to which the elements belong.dimension
- Size of the vector.expectedSize
- Expected number of non-zero entries.
-
SparseFieldVector
Create from a Field array. Only non-zero entries will be stored.- Parameters:
field
- Field to which the elements belong.values
- Set of values to create from.- Throws:
NullArgumentException
- if values is null
-
SparseFieldVector
Copy constructor.- Parameters:
v
- Instance to copy.
-
-
Method Details
-
add
Optimized method to add sparse vectors.- Parameters:
v
- Vector to add.- Returns:
this + v
.- Throws:
MathIllegalArgumentException
- ifv
is not the same size asthis
.
-
append
Construct a vector by appending a vector to this vector.- Parameters:
v
- Vector to append to this one.- Returns:
- a new vector.
-
append
Construct a vector by appending a vector to this vector.- Specified by:
append
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
v
- vector to append to this one.- Returns:
- a new vector
-
append
Construct a vector by appending a T to this vector.- Specified by:
append
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
d
- T to append.- Returns:
- a new vector
- Throws:
NullArgumentException
- if d is null
-
copy
Returns a (deep) copy of this.- Specified by:
copy
in interfaceFieldVector<T extends FieldElement<T>>
- Returns:
- vector copy
-
dotProduct
Compute the dot product.- Specified by:
dotProduct
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
v
- vector with which dot product should be computed- Returns:
- the scalar dot product of
this
andv
- Throws:
MathIllegalArgumentException
- ifv
is not the same size asthis
-
ebeDivide
public FieldVector<T> ebeDivide(FieldVector<T> v) throws MathIllegalArgumentException, MathRuntimeException Element-by-element division.- Specified by:
ebeDivide
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
v
- vector by which instance elements must be divided- Returns:
- a vector containing
this[i] / v[i]
for alli
- Throws:
MathIllegalArgumentException
- ifv
is not the same size asthis
MathRuntimeException
- if one entry ofv
is zero.
-
ebeMultiply
Element-by-element multiplication.- Specified by:
ebeMultiply
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
v
- vector by which instance elements must be multiplied- Returns:
- a vector containing
this[i] * v[i]
for alli
- Throws:
MathIllegalArgumentException
- ifv
is not the same size asthis
-
getDimension
public int getDimension()Returns the size of the vector.- Specified by:
getDimension
in interfaceFieldVector<T extends FieldElement<T>>
- Returns:
- size
-
getEntry
Returns the entry in the specified index.- Specified by:
getEntry
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
index
- Index location of entry to be fetched.- Returns:
- the vector entry at
index
. - Throws:
MathIllegalArgumentException
- if the index is not valid.- See Also:
-
getField
Get the type of field elements of the vector.- Specified by:
getField
in interfaceFieldVector<T extends FieldElement<T>>
- Returns:
- type of field elements of the vector
-
getSubVector
Get a subvector from consecutive elements.- Specified by:
getSubVector
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
index
- index of first element.n
- number of elements to be retrieved.- Returns:
- a vector containing n elements.
- Throws:
MathIllegalArgumentException
- if the index is not valid.
-
mapAdd
Map an addition operation to each entry.- Specified by:
mapAdd
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
d
- value to be added to each entry- Returns:
this + d
- Throws:
NullArgumentException
- ifd
isnull
.
-
mapAddToSelf
Map an addition operation to each entry.The instance is changed by this method.
- Specified by:
mapAddToSelf
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
d
- value to be added to each entry- Returns:
- for convenience, return
this
- Throws:
NullArgumentException
- ifd
isnull
.
-
mapDivide
Map a division operation to each entry.- Specified by:
mapDivide
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
d
- value to divide all entries by- Returns:
this / d
- Throws:
NullArgumentException
- ifd
isnull
.MathRuntimeException
- ifd
is zero.
-
mapDivideToSelf
Map a division operation to each entry.The instance is changed by this method.
- Specified by:
mapDivideToSelf
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
d
- value to divide all entries by- Returns:
- for convenience, return
this
- Throws:
NullArgumentException
- ifd
isnull
.MathRuntimeException
- ifd
is zero.
-
mapInv
Map the 1/x function to each entry.- Specified by:
mapInv
in interfaceFieldVector<T extends FieldElement<T>>
- Returns:
- a vector containing the result of applying the function to each entry.
- Throws:
MathRuntimeException
- if one of the entries is zero.
-
mapInvToSelf
Map the 1/x function to each entry.The instance is changed by this method.
- Specified by:
mapInvToSelf
in interfaceFieldVector<T extends FieldElement<T>>
- Returns:
- for convenience, return
this
- Throws:
MathRuntimeException
- if one of the entries is zero.
-
mapMultiply
Map a multiplication operation to each entry.- Specified by:
mapMultiply
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
d
- value to multiply all entries by- Returns:
this * d
- Throws:
NullArgumentException
- ifd
isnull
.
-
mapMultiplyToSelf
Map a multiplication operation to each entry.The instance is changed by this method.
- Specified by:
mapMultiplyToSelf
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
d
- value to multiply all entries by- Returns:
- for convenience, return
this
- Throws:
NullArgumentException
- ifd
isnull
.
-
mapSubtract
Map a subtraction operation to each entry.- Specified by:
mapSubtract
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
d
- value to be subtracted to each entry- Returns:
this - d
- Throws:
NullArgumentException
- ifd
isnull
-
mapSubtractToSelf
Map a subtraction operation to each entry.The instance is changed by this method.
- Specified by:
mapSubtractToSelf
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
d
- value to be subtracted to each entry- Returns:
- for convenience, return
this
- Throws:
NullArgumentException
- ifd
isnull
-
outerProduct
Optimized method to compute outer product when both vectors are sparse.- Parameters:
v
- vector with which outer product should be computed- Returns:
- the matrix outer product between instance and v
-
outerProduct
Compute the outer product.- Specified by:
outerProduct
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
v
- vector with which outer product should be computed- Returns:
- the matrix outer product between instance and v
-
projection
public FieldVector<T> projection(FieldVector<T> v) throws MathIllegalArgumentException, MathRuntimeException Find the orthogonal projection of this vector onto another vector.- Specified by:
projection
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
v
- vector onto whichthis
must be projected- Returns:
- projection of
this
ontov
- Throws:
MathIllegalArgumentException
- ifv
is not the same size asthis
MathRuntimeException
- ifv
is the null vector.
-
set
Set all elements to a single value.- Specified by:
set
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
value
- single value to set for all elements- Throws:
NullArgumentException
- if value is null
-
setEntry
Set a single element.- Specified by:
setEntry
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
index
- element index.value
- new value for the element.- Throws:
NullArgumentException
- if value is nullMathIllegalArgumentException
- if the index is not valid.- See Also:
-
setSubVector
Set a set of consecutive elements.- Specified by:
setSubVector
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
index
- index of first element to be set.v
- vector containing the values to set.- Throws:
MathIllegalArgumentException
- if the index is not valid.
-
subtract
Optimized method to computethis
minusv
.- Parameters:
v
- vector to be subtracted- Returns:
this - v
- Throws:
MathIllegalArgumentException
- ifv
is not the same size asthis
.
-
subtract
Computethis
minusv
.- Specified by:
subtract
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
v
- vector to be subtracted- Returns:
this - v
- Throws:
MathIllegalArgumentException
- ifv
is not the same size asthis
-
toArray
Convert the vector to a T array.The array is independent from vector data, it's elements are copied.
- Specified by:
toArray
in interfaceFieldVector<T extends FieldElement<T>>
- Returns:
- array containing a copy of vector elements
-
checkVectorDimensions
Check if instance dimension is equal to some expected value.- Parameters:
n
- Expected dimension.- Throws:
MathIllegalArgumentException
- if the dimensions do not match.
-
add
Compute the sum ofthis
andv
.- Specified by:
add
in interfaceFieldVector<T extends FieldElement<T>>
- Parameters:
v
- vector to be added- Returns:
this + v
- Throws:
MathIllegalArgumentException
- ifv
is not the same size asthis
-
walkInDefaultOrder
Visits (but does not alter) all entries of this vector in default order (increasing index).- Parameters:
visitor
- the visitor to be used to process the entries of this vector- Returns:
- the value returned by
FieldVectorPreservingVisitor.end()
at the end of the walk
-
walkInDefaultOrder
public T walkInDefaultOrder(FieldVectorPreservingVisitor<T> visitor, int start, int end) throws MathIllegalArgumentException Visits (but does not alter) some entries of this vector in default order (increasing index).- Parameters:
visitor
- visitor to be used to process the entries of this vectorstart
- the index of the first entry to be visitedend
- the index of the last entry to be visited (inclusive)- Returns:
- the value returned by
FieldVectorPreservingVisitor.end()
at the end of the walk - Throws:
MathIllegalArgumentException
- ifend < start
.MathIllegalArgumentException
- if the indices are not valid.
-
walkInOptimizedOrder
Visits (but does not alter) all entries of this vector in optimized order. The order in which the entries are visited is selected so as to lead to the most efficient implementation; it might depend on the concrete implementation of this abstract class.- Parameters:
visitor
- the visitor to be used to process the entries of this vector- Returns:
- the value returned by
FieldVectorPreservingVisitor.end()
at the end of the walk
-
walkInOptimizedOrder
public T walkInOptimizedOrder(FieldVectorPreservingVisitor<T> visitor, int start, int end) throws MathIllegalArgumentException Visits (but does not alter) some entries of this vector in optimized order. The order in which the entries are visited is selected so as to lead to the most efficient implementation; it might depend on the concrete implementation of this abstract class.- Parameters:
visitor
- visitor to be used to process the entries of this vectorstart
- the index of the first entry to be visitedend
- the index of the last entry to be visited (inclusive)- Returns:
- the value returned by
FieldVectorPreservingVisitor.end()
at the end of the walk - Throws:
MathIllegalArgumentException
- ifend < start
.MathIllegalArgumentException
- if the indices are not valid.
-
walkInDefaultOrder
Visits (and possibly alters) all entries of this vector in default order (increasing index).- Parameters:
visitor
- the visitor to be used to process and modify the entries of this vector- Returns:
- the value returned by
FieldVectorChangingVisitor.end()
at the end of the walk
-
walkInDefaultOrder
public T walkInDefaultOrder(FieldVectorChangingVisitor<T> visitor, int start, int end) throws MathIllegalArgumentException Visits (and possibly alters) some entries of this vector in default order (increasing index).- Parameters:
visitor
- visitor to be used to process the entries of this vectorstart
- the index of the first entry to be visitedend
- the index of the last entry to be visited (inclusive)- Returns:
- the value returned by
FieldVectorChangingVisitor.end()
at the end of the walk - Throws:
MathIllegalArgumentException
- ifend < start
.MathIllegalArgumentException
- if the indices are not valid.
-
walkInOptimizedOrder
Visits (and possibly alters) all entries of this vector in optimized order. The order in which the entries are visited is selected so as to lead to the most efficient implementation; it might depend on the concrete implementation of this abstract class.- Parameters:
visitor
- the visitor to be used to process the entries of this vector- Returns:
- the value returned by
FieldVectorChangingVisitor.end()
at the end of the walk
-
walkInOptimizedOrder
public T walkInOptimizedOrder(FieldVectorChangingVisitor<T> visitor, int start, int end) throws MathIllegalArgumentException Visits (and possibly change) some entries of this vector in optimized order. The order in which the entries are visited is selected so as to lead to the most efficient implementation; it might depend on the concrete implementation of this abstract class.- Parameters:
visitor
- visitor to be used to process the entries of this vectorstart
- the index of the first entry to be visitedend
- the index of the last entry to be visited (inclusive)- Returns:
- the value returned by
FieldVectorChangingVisitor.end()
at the end of the walk - Throws:
MathIllegalArgumentException
- ifend < start
.MathIllegalArgumentException
- if the indices are not valid.
-
hashCode
public int hashCode() -
equals
-