Uses of Class
org.flag4j.arrays.backend.ring_arrays.AbstractDenseRingMatrix
Packages that use AbstractDenseRingMatrix
Package
Description
Provides implementations for dense tensors, matrices, and vectors.
General purpose linear algebra operations including condition number evaluations, eigenvalue/eigenvector computations, matrix
inversion, and subspace analysis.
-
Uses of AbstractDenseRingMatrix in org.flag4j.arrays.backend.field_arrays
Subclasses of AbstractDenseRingMatrix in org.flag4j.arrays.backend.field_arraysModifier and TypeClassDescriptionclassAbstractDenseFieldMatrix<T extends AbstractDenseFieldMatrix<T,U, V>, U extends AbstractDenseFieldVector<U, T, V>, V extends Field<V>> -
Uses of AbstractDenseRingMatrix in org.flag4j.arrays.backend.ring_arrays
Classes in org.flag4j.arrays.backend.ring_arrays with type parameters of type AbstractDenseRingMatrixModifier and TypeClassDescriptionclassAbstractCooRingMatrix<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.classAbstractCooRingVector<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.classAbstractCsrRingMatrix<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.classAbstractDenseRingMatrix<T extends AbstractDenseRingMatrix<T,U, V>, U extends AbstractDenseRingVector<U, T, V>, V extends Ring<V>> The base class for all dense matrices whose elements are members of aRing.classAbstractDenseRingVector<T extends AbstractDenseRingVector<T,U, V>, U extends AbstractDenseRingMatrix<U, T, V>, V extends Ring<V>> The base class for all dense vectors whose data areRingelements. -
Uses of AbstractDenseRingMatrix in org.flag4j.arrays.dense
Subclasses of AbstractDenseRingMatrix in org.flag4j.arrays.denseModifier and TypeClassDescriptionclassInstances of this class represents a complex dense matrix backed by aComplex128array.classFieldMatrix<T extends Field<T>>Instances of this class represents a dense matrix backed by aFieldarray.classRingMatrix<T extends Ring<T>>Instances of this class represents a dense matrix backed by aRingarray. -
Uses of AbstractDenseRingMatrix in org.flag4j.linalg
Methods in org.flag4j.linalg with parameters of type AbstractDenseRingMatrixModifier and TypeMethodDescriptionstatic doubleMatrixNorms.infNorm(AbstractDenseRingMatrix<?, ?, ?> src) Computes the infinite norm of this matrix.static doubleMatrixNorms.maxNorm(AbstractDenseRingMatrix<?, ?, ?> src) Computes the maximum norm of this matrix.static doubleMatrixNorms.norm(AbstractDenseRingMatrix<?, ?, ?> src) Computes the Frobenius (or \( L_{2, 2} \)) norm of a denseRingmatrix.static doubleMatrixNorms.norm(AbstractDenseRingMatrix<?, ?, ?> src, double p, double q) Computes the \( L_{p,q} \) norm of a denseRingmatrix.