Uses of Class
org.la4j.vector.SparseVector
-
Packages that use SparseVector Package Description org.la4j org.la4j.operation org.la4j.operation.ooplace org.la4j.vector org.la4j.vector.sparse -
-
Uses of SparseVector in org.la4j
Methods in org.la4j that return SparseVector Modifier and Type Method Description SparseVectorVector. toSparseVector()Converts this vector into aSparseVector. -
Uses of SparseVector in org.la4j.operation
Methods in org.la4j.operation with parameters of type SparseVector Modifier and Type Method Description RCommonVectorOperation. apply(SparseVector a)RCommonVectorVectorOperation. apply(DenseVector a, SparseVector b)RCommonVectorVectorOperation. apply(SparseVector a, DenseVector b)RCommonVectorVectorOperation. apply(SparseVector a, SparseVector b)abstract RMatrixVectorOperation. apply(ColumnMajorSparseMatrix a, SparseVector b)abstract RMatrixVectorOperation. apply(DenseMatrix a, SparseVector b)abstract RMatrixVectorOperation. apply(RowMajorSparseMatrix a, SparseVector b)RSymmetricVectorVectorOperation. apply(DenseVector a, SparseVector b)RSymmetricVectorVectorOperation. apply(SparseVector a, DenseVector b)abstract RVectorMatrixOperation. apply(SparseVector a, ColumnMajorSparseMatrix b)abstract RVectorMatrixOperation. apply(SparseVector a, DenseMatrix b)abstract RVectorMatrixOperation. apply(SparseVector a, RowMajorSparseMatrix b)abstract RVectorOperation. apply(SparseVector a)abstract RVectorVectorOperation. apply(DenseVector a, SparseVector b)abstract RVectorVectorOperation. apply(SparseVector a, DenseVector b)abstract RVectorVectorOperation. apply(SparseVector a, SparseVector b)abstract RSymmetricVectorVectorOperation. applySymmetric(DenseVector a, SparseVector b)MatrixOperation<R>VectorMatrixOperation. partiallyApply(SparseVector a)VectorOperation<R>VectorVectorOperation. partiallyApply(SparseVector a) -
Uses of SparseVector in org.la4j.operation.ooplace
Methods in org.la4j.operation.ooplace with parameters of type SparseVector Modifier and Type Method Description java.lang.DoubleOoPlaceInnerProduct. apply(SparseVector a, SparseVector b)VectorOoPlaceMatrixByVectorMultiplication. apply(ColumnMajorSparseMatrix a, SparseVector b)VectorOoPlaceMatrixByVectorMultiplication. apply(DenseMatrix a, SparseVector b)VectorOoPlaceMatrixByVectorMultiplication. apply(RowMajorSparseMatrix a, SparseVector b)MatrixOoPlaceOuterProduct. apply(DenseVector a, SparseVector b)MatrixOoPlaceOuterProduct. apply(SparseVector a, DenseVector b)MatrixOoPlaceOuterProduct. apply(SparseVector a, SparseVector b)VectorOoPlaceVectorByMatrixMultiplication. apply(SparseVector a, ColumnMajorSparseMatrix b)VectorOoPlaceVectorByMatrixMultiplication. apply(SparseVector a, DenseMatrix b)VectorOoPlaceVectorByMatrixMultiplication. apply(SparseVector a, RowMajorSparseMatrix b)VectorOoPlaceVectorHadamardProduct. apply(SparseVector a, SparseVector b)VectorOoPlaceVectorsAddition. apply(SparseVector a, SparseVector b)VectorOoPlaceVectorsSubtraction. apply(DenseVector a, SparseVector b)VectorOoPlaceVectorsSubtraction. apply(SparseVector a, DenseVector b)VectorOoPlaceVectorsSubtraction. apply(SparseVector a, SparseVector b)java.lang.DoubleOoPlaceInnerProduct. applySymmetric(DenseVector a, SparseVector b)VectorOoPlaceVectorHadamardProduct. applySymmetric(DenseVector a, SparseVector b)VectorOoPlaceVectorsAddition. applySymmetric(DenseVector a, SparseVector b) -
Uses of SparseVector in org.la4j.vector
Methods in org.la4j.vector that return SparseVector Modifier and Type Method Description static SparseVectorSparseVector. fromArray(double[] array)Creates a newSparseVectorfrom the givenarraywith compressing (copying) the underlying array.static SparseVectorSparseVector. fromCollection(java.util.Collection<? extends java.lang.Number> list)Creates newSparseVectorfrom collectionstatic SparseVectorSparseVector. fromCSV(java.lang.String csv)ParsesSparseVectorfrom the given CSV string.static SparseVectorSparseVector. fromMap(java.util.Map<java.lang.Integer,? extends java.lang.Number> map, int length)Creates newSparseVectorfrom given index-value mapstatic SparseVectorSparseVector. fromMatrixMarket(java.lang.String mm)ParsesSparseVectorfrom the given Matrix Market string.static SparseVectorSparseVector. random(int length, double density, java.util.Random random)static SparseVectorSparseVector. zero(int length)Creates a zeroSparseVectorof the givenlength.static SparseVectorSparseVector. zero(int length, int capacity) -
Uses of SparseVector in org.la4j.vector.sparse
Subclasses of SparseVector in org.la4j.vector.sparse Modifier and Type Class Description classCompressedVectorA basic sparse vector implementation using underlying value and index arrays.
-