Uses of Class
org.flag4j.arrays.backend.ring_arrays.AbstractCooRingVector
Packages that use AbstractCooRingVector
Package
Description
Contains implementations for sparse tensors, matrices, and vectors.
-
Uses of AbstractCooRingVector in org.flag4j.arrays.backend.field_arrays
Subclasses of AbstractCooRingVector in org.flag4j.arrays.backend.field_arraysModifier and TypeClassDescriptionclass
AbstractCooFieldVector<T extends AbstractCooFieldVector<T,
U, V, W, Y>, U extends AbstractDenseFieldVector<U, W, Y>, V extends AbstractCooFieldMatrix<V, W, T, Y>, W extends AbstractDenseFieldMatrix<W, U, Y>, Y extends Field<Y>> A sparse vector stored in coordinate list (COO) format. -
Uses of AbstractCooRingVector in org.flag4j.arrays.backend.ring_arrays
Classes in org.flag4j.arrays.backend.ring_arrays with type parameters of type AbstractCooRingVectorModifier and TypeClassDescriptionclass
AbstractCooRingMatrix<T extends AbstractCooRingMatrix<T,
U, V, W>, U extends AbstractDenseRingMatrix<U, ?, W>, V extends AbstractCooRingVector<V, ?, T, U, W>, W extends Ring<W>> A sparse matrix stored in coordinate list (COO) format.class
AbstractCooRingVector<T extends AbstractCooRingVector<T,
U, V, W, Y>, U extends AbstractDenseRingVector<U, W, Y>, V extends AbstractCooRingMatrix<V, W, T, Y>, W extends AbstractDenseRingMatrix<W, U, Y>, Y extends Ring<Y>> A sparse vector stored in coordinate list (COO) format.class
AbstractCsrRingMatrix<T extends AbstractCsrRingMatrix<T,
U, V, W>, U extends AbstractDenseRingMatrix<U, ?, W>, V extends AbstractCooRingVector<V, ?, ?, U, W>, W extends Ring<W>> A sparse matrix stored in compressed sparse row (CSR) format. -
Uses of AbstractCooRingVector in org.flag4j.arrays.sparse
Subclasses of AbstractCooRingVector in org.flag4j.arrays.sparseModifier and TypeClassDescriptionclass
A complex sparse vector stored in coordinate list (COO) format.class
CooFieldVector<T extends Field<T>>
Represents a sparse vector whose non-zero elements are stored in Coordinate List (COO) format, with all data elements belonging to a specifiedField
type.class
CooRingVector<T extends Ring<T>>
Represents a sparse vector whose non-zero elements are stored in Coordinate List (COO) format, with all data elements belonging to a specifiedRing
type. -
Uses of AbstractCooRingVector in org.flag4j.linalg.ops.sparse.coo.ring_ops
Methods in org.flag4j.linalg.ops.sparse.coo.ring_ops with parameters of type AbstractCooRingVectorModifier and TypeMethodDescriptionstatic <T extends Ring<T>>
TCooRingVectorOps.inner
(AbstractCooRingVector<?, ?, ?, ?, T> src1, AbstractCooRingVector<?, ?, ?, ?, T> src2) Computes the inner product of two complex sparse vectors.