Uses of Class
org.la4j.vector.DenseVector
-
Packages that use DenseVector Package Description org.la4j org.la4j.operation org.la4j.operation.ooplace org.la4j.vector org.la4j.vector.dense -
-
Uses of DenseVector in org.la4j
Methods in org.la4j that return DenseVector Modifier and Type Method Description DenseVectorVector. toDenseVector()Converts this vector into aDenseVector. -
Uses of DenseVector in org.la4j.operation
Methods in org.la4j.operation with parameters of type DenseVector Modifier and Type Method Description RCommonVectorOperation. apply(DenseVector a)RCommonVectorVectorOperation. apply(DenseVector a, DenseVector b)RCommonVectorVectorOperation. apply(DenseVector a, SparseVector b)RCommonVectorVectorOperation. apply(SparseVector a, DenseVector b)abstract RMatrixVectorOperation. apply(ColumnMajorSparseMatrix a, DenseVector b)abstract RMatrixVectorOperation. apply(DenseMatrix a, DenseVector b)abstract RMatrixVectorOperation. apply(RowMajorSparseMatrix a, DenseVector b)RSymmetricVectorVectorOperation. apply(DenseVector a, SparseVector b)RSymmetricVectorVectorOperation. apply(SparseVector a, DenseVector b)abstract RVectorMatrixOperation. apply(DenseVector a, ColumnMajorSparseMatrix b)abstract RVectorMatrixOperation. apply(DenseVector a, DenseMatrix b)abstract RVectorMatrixOperation. apply(DenseVector a, RowMajorSparseMatrix b)abstract RVectorOperation. apply(DenseVector a)abstract RVectorVectorOperation. apply(DenseVector a, DenseVector b)abstract RVectorVectorOperation. apply(DenseVector a, SparseVector b)abstract RVectorVectorOperation. apply(SparseVector a, DenseVector b)abstract RSymmetricVectorVectorOperation. applySymmetric(DenseVector a, SparseVector b)MatrixOperation<R>VectorMatrixOperation. partiallyApply(DenseVector a)VectorOperation<R>VectorVectorOperation. partiallyApply(DenseVector a) -
Uses of DenseVector in org.la4j.operation.ooplace
Methods in org.la4j.operation.ooplace with parameters of type DenseVector Modifier and Type Method Description java.lang.DoubleOoPlaceInnerProduct. apply(DenseVector a, DenseVector b)VectorOoPlaceMatrixByVectorMultiplication. apply(ColumnMajorSparseMatrix a, DenseVector b)VectorOoPlaceMatrixByVectorMultiplication. apply(DenseMatrix a, DenseVector b)VectorOoPlaceMatrixByVectorMultiplication. apply(RowMajorSparseMatrix a, DenseVector b)MatrixOoPlaceOuterProduct. apply(DenseVector a, DenseVector b)MatrixOoPlaceOuterProduct. apply(DenseVector a, SparseVector b)MatrixOoPlaceOuterProduct. apply(SparseVector a, DenseVector b)VectorOoPlaceVectorByMatrixMultiplication. apply(DenseVector a, ColumnMajorSparseMatrix b)VectorOoPlaceVectorByMatrixMultiplication. apply(DenseVector a, DenseMatrix b)VectorOoPlaceVectorByMatrixMultiplication. apply(DenseVector a, RowMajorSparseMatrix b)VectorOoPlaceVectorHadamardProduct. apply(DenseVector a, DenseVector b)VectorOoPlaceVectorsAddition. apply(DenseVector a, DenseVector b)VectorOoPlaceVectorsSubtraction. apply(DenseVector a, DenseVector b)VectorOoPlaceVectorsSubtraction. apply(DenseVector a, SparseVector b)VectorOoPlaceVectorsSubtraction. apply(SparseVector a, DenseVector b)java.lang.DoubleOoPlaceInnerProduct. applySymmetric(DenseVector a, SparseVector b)VectorOoPlaceVectorHadamardProduct. applySymmetric(DenseVector a, SparseVector b)VectorOoPlaceVectorsAddition. applySymmetric(DenseVector a, SparseVector b) -
Uses of DenseVector in org.la4j.vector
Methods in org.la4j.vector that return DenseVector Modifier and Type Method Description static DenseVectorDenseVector. constant(int length, double value)static DenseVectorDenseVector. fromArray(double[] array)Creates a newDenseVectorfrom the givenarrayw/o copying the underlying array.static DenseVectorDenseVector. fromCollection(java.util.Collection<? extends java.lang.Number> list)Creates newDenseVectorfromstatic DenseVectorDenseVector. fromCSV(java.lang.String csv)ParsesDenseVectorfrom the given CSV string.static DenseVectorDenseVector. fromMap(java.util.Map<java.lang.Integer,? extends java.lang.Number> map, int length)Creates newDenseVectorfrom index-value mapstatic DenseVectorDenseVector. fromMatrixMarket(java.lang.String mm)ParsesDenseVectorfrom the given Matrix Market string.static DenseVectorDenseVector. random(int length, java.util.Random random)static DenseVectorDenseVector. unit(int length)Creates an unitDenseVectorof the givenlength.static DenseVectorDenseVector. zero(int length)Creates a zeroDenseVectorof the givenlength. -
Uses of DenseVector in org.la4j.vector.dense
Subclasses of DenseVector in org.la4j.vector.dense Modifier and Type Class Description classBasicVectorA basic dense vector implementation using an array.
-