Uses of Class
org.la4j.vector.SparseVector
Packages that use SparseVector
Package
Description
-
Uses of SparseVector in org.la4j
Methods in org.la4j that return SparseVectorModifier and TypeMethodDescriptionVector.toSparseVector()
Converts this vector into aSparseVector
. -
Uses of SparseVector in org.la4j.operation
Methods in org.la4j.operation with parameters of type SparseVectorModifier and TypeMethodDescriptionCommonVectorOperation.apply
(SparseVector a) CommonVectorVectorOperation.apply
(DenseVector a, SparseVector b) CommonVectorVectorOperation.apply
(SparseVector a, DenseVector b) CommonVectorVectorOperation.apply
(SparseVector a, SparseVector b) abstract R
MatrixVectorOperation.apply
(ColumnMajorSparseMatrix a, SparseVector b) abstract R
MatrixVectorOperation.apply
(DenseMatrix a, SparseVector b) abstract R
MatrixVectorOperation.apply
(RowMajorSparseMatrix a, SparseVector b) SymmetricVectorVectorOperation.apply
(DenseVector a, SparseVector b) SymmetricVectorVectorOperation.apply
(SparseVector a, DenseVector b) abstract R
VectorMatrixOperation.apply
(SparseVector a, ColumnMajorSparseMatrix b) abstract R
VectorMatrixOperation.apply
(SparseVector a, DenseMatrix b) abstract R
VectorMatrixOperation.apply
(SparseVector a, RowMajorSparseMatrix b) abstract R
VectorOperation.apply
(SparseVector a) abstract R
VectorVectorOperation.apply
(DenseVector a, SparseVector b) abstract R
VectorVectorOperation.apply
(SparseVector a, DenseVector b) abstract R
VectorVectorOperation.apply
(SparseVector a, SparseVector b) abstract R
SymmetricVectorVectorOperation.applySymmetric
(DenseVector a, SparseVector b) VectorMatrixOperation.partiallyApply
(SparseVector a) VectorVectorOperation.partiallyApply
(SparseVector a) -
Uses of SparseVector in org.la4j.operation.ooplace
Methods in org.la4j.operation.ooplace with parameters of type SparseVectorModifier and TypeMethodDescriptionOoPlaceInnerProduct.apply
(SparseVector a, SparseVector b) OoPlaceMatrixByVectorMultiplication.apply
(ColumnMajorSparseMatrix a, SparseVector b) OoPlaceMatrixByVectorMultiplication.apply
(DenseMatrix a, SparseVector b) OoPlaceMatrixByVectorMultiplication.apply
(RowMajorSparseMatrix a, SparseVector b) OoPlaceOuterProduct.apply
(DenseVector a, SparseVector b) OoPlaceOuterProduct.apply
(SparseVector a, DenseVector b) OoPlaceOuterProduct.apply
(SparseVector a, SparseVector b) OoPlaceVectorByMatrixMultiplication.apply
(SparseVector a, ColumnMajorSparseMatrix b) OoPlaceVectorByMatrixMultiplication.apply
(SparseVector a, DenseMatrix b) OoPlaceVectorByMatrixMultiplication.apply
(SparseVector a, RowMajorSparseMatrix b) OoPlaceVectorHadamardProduct.apply
(SparseVector a, SparseVector b) OoPlaceVectorsAddition.apply
(SparseVector a, SparseVector b) OoPlaceVectorsSubtraction.apply
(DenseVector a, SparseVector b) OoPlaceVectorsSubtraction.apply
(SparseVector a, DenseVector b) OoPlaceVectorsSubtraction.apply
(SparseVector a, SparseVector b) OoPlaceInnerProduct.applySymmetric
(DenseVector a, SparseVector b) OoPlaceVectorHadamardProduct.applySymmetric
(DenseVector a, SparseVector b) OoPlaceVectorsAddition.applySymmetric
(DenseVector a, SparseVector b) -
Uses of SparseVector in org.la4j.vector
Methods in org.la4j.vector that return SparseVectorModifier and TypeMethodDescriptionstatic SparseVector
SparseVector.fromArray
(double[] array) Creates a newSparseVector
from the givenarray
with compressing (copying) the underlying array.static SparseVector
SparseVector.fromCollection
(Collection<? extends Number> list) Creates newSparseVector
from collectionstatic SparseVector
ParsesSparseVector
from the given CSV string.static SparseVector
Creates newSparseVector
from given index-value mapstatic SparseVector
SparseVector.fromMatrixMarket
(String mm) ParsesSparseVector
from the given Matrix Market string.static SparseVector
static SparseVector
SparseVector.zero
(int length) Creates a zeroSparseVector
of the givenlength
.static SparseVector
SparseVector.zero
(int length, int capacity) -
Uses of SparseVector in org.la4j.vector.sparse
Subclasses of SparseVector in org.la4j.vector.sparseModifier and TypeClassDescriptionclass
A basic sparse vector implementation using underlying value and index arrays.