Uses of Class
org.flag4j.arrays.backend.ring_arrays.AbstractCooRingMatrix
Package
Description
Contains implementations for sparse tensors, matrices, and vectors.
-
Uses of AbstractCooRingMatrix in org.flag4j.arrays.backend.field_arrays
Modifier and TypeClassDescriptionclass
AbstractCooFieldMatrix<T extends AbstractCooFieldMatrix<T,
U, V, W>, U extends AbstractDenseFieldMatrix<U, ?, W>, V extends AbstractCooFieldVector<V, ?, T, U, W>, W extends Field<W>> A sparse matrix stored in coordinate list (COO) format. -
Uses of AbstractCooRingMatrix in org.flag4j.arrays.backend.ring_arrays
Modifier 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. -
Uses of AbstractCooRingMatrix in org.flag4j.arrays.sparse
Modifier and TypeClassDescriptionclass
A complex sparse matrix stored in coordinate list (COO) format.class
CooFieldMatrix<T extends Field<T>>
Instances of this class represent a sparse matrix whose non-zero elements are stored in Coordinate List (COO) format, with all data elements belonging to a specifiedField
type.class
CooRingMatrix<T extends Ring<T>>
Represents a sparse matrix whose non-zero elements are stored in Coordinate List (COO) format, with all data elements belonging to a specifiedRing
type. -
Uses of AbstractCooRingMatrix in org.flag4j.linalg.ops.sparse.coo.ring_ops
Modifier and TypeMethodDescriptionstatic <T extends Ring<T>>
booleanCooRingMatrixOps.isCloseToIdentity
(AbstractCooRingMatrix<?, ?, ?, T> src) Checks if a real sparse matrix is close to the identity matrix.static <T extends Ring<T>>
doubleCooRingNorms.matrixNormL22
(AbstractCooRingMatrix<?, ?, ?, T> src) Computes the L2, 2 norm of a matrix.static <T extends Ring<T>>
doubleCooRingNorms.matrixNormLpq
(AbstractCooRingMatrix<?, ?, ?, T> src, double p, double q) Computes the Lp, q norm of a matrix.