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 DenseVector
Vector. 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 R
CommonVectorOperation. apply(DenseVector a)
R
CommonVectorVectorOperation. apply(DenseVector a, DenseVector b)
R
CommonVectorVectorOperation. apply(DenseVector a, SparseVector b)
R
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)
R
SymmetricVectorVectorOperation. apply(DenseVector a, SparseVector b)
R
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)
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.Double
OoPlaceInnerProduct. apply(DenseVector a, DenseVector b)
Vector
OoPlaceMatrixByVectorMultiplication. apply(ColumnMajorSparseMatrix a, DenseVector b)
Vector
OoPlaceMatrixByVectorMultiplication. apply(DenseMatrix a, DenseVector b)
Vector
OoPlaceMatrixByVectorMultiplication. apply(RowMajorSparseMatrix a, DenseVector b)
Matrix
OoPlaceOuterProduct. apply(DenseVector a, DenseVector b)
Matrix
OoPlaceOuterProduct. apply(DenseVector a, SparseVector b)
Matrix
OoPlaceOuterProduct. apply(SparseVector a, DenseVector b)
Vector
OoPlaceVectorByMatrixMultiplication. apply(DenseVector a, ColumnMajorSparseMatrix b)
Vector
OoPlaceVectorByMatrixMultiplication. apply(DenseVector a, DenseMatrix b)
Vector
OoPlaceVectorByMatrixMultiplication. apply(DenseVector a, RowMajorSparseMatrix b)
Vector
OoPlaceVectorHadamardProduct. apply(DenseVector a, DenseVector b)
Vector
OoPlaceVectorsAddition. apply(DenseVector a, DenseVector b)
Vector
OoPlaceVectorsSubtraction. apply(DenseVector a, DenseVector b)
Vector
OoPlaceVectorsSubtraction. apply(DenseVector a, SparseVector b)
Vector
OoPlaceVectorsSubtraction. apply(SparseVector a, DenseVector b)
java.lang.Double
OoPlaceInnerProduct. applySymmetric(DenseVector a, SparseVector b)
Vector
OoPlaceVectorHadamardProduct. applySymmetric(DenseVector a, SparseVector b)
Vector
OoPlaceVectorsAddition. 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 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(java.util.Collection<? extends java.lang.Number> list)
Creates newDenseVector
fromstatic DenseVector
DenseVector. fromCSV(java.lang.String csv)
ParsesDenseVector
from the given CSV string.static DenseVector
DenseVector. fromMap(java.util.Map<java.lang.Integer,? extends java.lang.Number> map, int length)
Creates newDenseVector
from index-value mapstatic DenseVector
DenseVector. fromMatrixMarket(java.lang.String mm)
ParsesDenseVector
from the given Matrix Market string.static DenseVector
DenseVector. random(int length, java.util.Random random)
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.dense Modifier and Type Class Description class
BasicVector
A basic dense vector implementation using an array.
-