Uses of Class
org.apache.commons.math.linear.SparseFieldVector
-
Packages that use SparseFieldVector Package Description org.apache.commons.math.linear Linear algebra support. -
-
Uses of SparseFieldVector in org.apache.commons.math.linear
Methods in org.apache.commons.math.linear that return SparseFieldVector Modifier and Type Method Description SparseFieldVector<T>
SparseFieldVector. subtract(SparseFieldVector<T> v)
Optimized method to subtract SparseRealVectors.Methods in org.apache.commons.math.linear with parameters of type SparseFieldVector Modifier and Type Method Description FieldVector<T>
SparseFieldVector. add(SparseFieldVector<T> v)
Optimized method to add sparse vectors.FieldVector<T>
SparseFieldVector. append(SparseFieldVector<T> v)
Construct a vector by appending a vector to this vector.FieldMatrix<T>
SparseFieldVector. outerProduct(SparseFieldVector<T> v)
Optimized method to compute outer product when both vectors are sparse.SparseFieldVector<T>
SparseFieldVector. subtract(SparseFieldVector<T> v)
Optimized method to subtract SparseRealVectors.Constructors in org.apache.commons.math.linear with parameters of type SparseFieldVector Constructor Description SparseFieldVector(SparseFieldVector<T> v)
Copy constructor.SparseFieldVector(SparseFieldVector<T> v, int resize)
Build a resized vector, for use with append.
-