Uses of Interface
org.la4j.vector.functor.VectorProcedure
-
Packages that use VectorProcedure Package Description org.la4j org.la4j.matrix org.la4j.matrix.sparse org.la4j.vector org.la4j.vector.sparse -
-
Uses of VectorProcedure in org.la4j
Methods in org.la4j that return VectorProcedure Modifier and Type Method Description static VectorProcedureVectors. asAccumulatorProcedure(VectorAccumulator accumulator)Creates an accumulator procedure that adapts a vector accumulator for procedure interface.Methods in org.la4j with parameters of type VectorProcedure Modifier and Type Method Description voidVector. each(VectorProcedure procedure)Applies givenprocedureto each element of this vector.voidMatrix. eachInColumn(int j, VectorProcedure procedure)Applies givenprocedureto each element of specified column of this matrix.voidMatrix. eachInRow(int i, VectorProcedure procedure)Applies givenprocedureto each element of specified row of this matrix. -
Uses of VectorProcedure in org.la4j.matrix
Methods in org.la4j.matrix with parameters of type VectorProcedure Modifier and Type Method Description voidSparseMatrix. eachNonZeroInColumn(int j, VectorProcedure procedure)Applies the givenprocedureto each non-zero element of the specified column of this matrix.voidSparseMatrix. eachNonZeroInRow(int i, VectorProcedure procedure)Applies the givenprocedureto each non-zero element of the specified row of this matrix. -
Uses of VectorProcedure in org.la4j.matrix.sparse
Methods in org.la4j.matrix.sparse with parameters of type VectorProcedure Modifier and Type Method Description voidCCSMatrix. eachInColumn(int j, VectorProcedure procedure)voidCRSMatrix. eachInRow(int i, VectorProcedure procedure)voidCCSMatrix. eachNonZeroInColumn(int j, VectorProcedure procedure)voidCRSMatrix. eachNonZeroInRow(int i, VectorProcedure procedure) -
Uses of VectorProcedure in org.la4j.vector
Methods in org.la4j.vector with parameters of type VectorProcedure Modifier and Type Method Description voidSparseVector. eachNonZero(VectorProcedure procedure)Applies givenprocedureto each non-zero element of this vector. -
Uses of VectorProcedure in org.la4j.vector.sparse
Methods in org.la4j.vector.sparse with parameters of type VectorProcedure Modifier and Type Method Description voidCompressedVector. each(VectorProcedure procedure)voidCompressedVector. eachNonZero(VectorProcedure procedure)
-