Uses of Class
org.la4j.vector.DenseVector
Packages that use DenseVector
Package
Description
-
Uses of DenseVector in org.la4j
Methods in org.la4j that return DenseVectorModifier and TypeMethodDescriptionVector.toDenseVector()
Converts this vector into aDenseVector
. -
Uses of DenseVector in org.la4j.operation
Methods in org.la4j.operation with parameters of type DenseVectorModifier and TypeMethodDescriptionCommonVectorOperation.apply
(DenseVector a) CommonVectorVectorOperation.apply
(DenseVector a, DenseVector b) CommonVectorVectorOperation.apply
(DenseVector a, SparseVector b) CommonVectorVectorOperation.apply
(SparseVector a, DenseVector b) abstract R
MatrixVectorOperation.apply
(ColumnMajorSparseMatrix a, DenseVector b) abstract R
MatrixVectorOperation.apply
(DenseMatrix a, DenseVector b) abstract R
MatrixVectorOperation.apply
(RowMajorSparseMatrix a, DenseVector b) SymmetricVectorVectorOperation.apply
(DenseVector a, SparseVector b) SymmetricVectorVectorOperation.apply
(SparseVector a, DenseVector b) abstract R
VectorMatrixOperation.apply
(DenseVector a, ColumnMajorSparseMatrix b) abstract R
VectorMatrixOperation.apply
(DenseVector a, DenseMatrix b) abstract R
VectorMatrixOperation.apply
(DenseVector a, RowMajorSparseMatrix b) abstract R
VectorOperation.apply
(DenseVector a) abstract R
VectorVectorOperation.apply
(DenseVector a, DenseVector b) abstract R
VectorVectorOperation.apply
(DenseVector a, SparseVector b) abstract R
VectorVectorOperation.apply
(SparseVector a, DenseVector b) abstract R
SymmetricVectorVectorOperation.applySymmetric
(DenseVector a, SparseVector b) VectorMatrixOperation.partiallyApply
(DenseVector a) VectorVectorOperation.partiallyApply
(DenseVector a) -
Uses of DenseVector in org.la4j.operation.ooplace
Methods in org.la4j.operation.ooplace with parameters of type DenseVectorModifier and TypeMethodDescriptionOoPlaceInnerProduct.apply
(DenseVector a, DenseVector b) OoPlaceMatrixByVectorMultiplication.apply
(ColumnMajorSparseMatrix a, DenseVector b) OoPlaceMatrixByVectorMultiplication.apply
(DenseMatrix a, DenseVector b) OoPlaceMatrixByVectorMultiplication.apply
(RowMajorSparseMatrix a, DenseVector b) OoPlaceOuterProduct.apply
(DenseVector a, DenseVector b) OoPlaceOuterProduct.apply
(DenseVector a, SparseVector b) OoPlaceOuterProduct.apply
(SparseVector a, DenseVector b) OoPlaceVectorByMatrixMultiplication.apply
(DenseVector a, ColumnMajorSparseMatrix b) OoPlaceVectorByMatrixMultiplication.apply
(DenseVector a, DenseMatrix b) OoPlaceVectorByMatrixMultiplication.apply
(DenseVector a, RowMajorSparseMatrix b) OoPlaceVectorHadamardProduct.apply
(DenseVector a, DenseVector b) OoPlaceVectorsAddition.apply
(DenseVector a, DenseVector b) OoPlaceVectorsSubtraction.apply
(DenseVector a, DenseVector b) OoPlaceVectorsSubtraction.apply
(DenseVector a, SparseVector b) OoPlaceVectorsSubtraction.apply
(SparseVector a, DenseVector b) OoPlaceInnerProduct.applySymmetric
(DenseVector a, SparseVector b) OoPlaceVectorHadamardProduct.applySymmetric
(DenseVector a, SparseVector b) OoPlaceVectorsAddition.applySymmetric
(DenseVector a, SparseVector b) -
Uses of DenseVector in org.la4j.vector
Methods in org.la4j.vector that return DenseVectorModifier and TypeMethodDescriptionstatic DenseVector
DenseVector.constant
(int length, double value) static DenseVector
DenseVector.fromArray
(double[] array) Creates a newDenseVector
from the givenarray
w/o copying the underlying array.static DenseVector
DenseVector.fromCollection
(Collection<? extends Number> list) Creates newDenseVector
fromstatic DenseVector
ParsesDenseVector
from the given CSV string.static DenseVector
Creates newDenseVector
from index-value mapstatic DenseVector
DenseVector.fromMatrixMarket
(String mm) ParsesDenseVector
from the given Matrix Market string.static DenseVector
static DenseVector
DenseVector.unit
(int length) Creates an unitDenseVector
of the givenlength
.static DenseVector
DenseVector.zero
(int length) Creates a zeroDenseVector
of the givenlength
. -
Uses of DenseVector in org.la4j.vector.dense
Subclasses of DenseVector in org.la4j.vector.denseModifier and TypeClassDescriptionclass
A basic dense vector implementation using an array.