Class AbstractFieldMatrix<T extends FieldElement<T>>

java.lang.Object
org.hipparchus.linear.AbstractFieldMatrix<T>
Type Parameters:
T - Type of the field elements.
All Implemented Interfaces:
AnyMatrix, FieldMatrix<T>, FieldBlendable<FieldMatrix<T>,T>
Direct Known Subclasses:
Array2DRowFieldMatrix, BlockFieldMatrix, SparseFieldMatrix

public abstract class AbstractFieldMatrix<T extends FieldElement<T>> extends Object implements FieldMatrix<T>
Basic implementation of FieldMatrix methods regardless of the underlying storage.

All the methods implemented here use getEntry(int, int) to access matrix elements. Derived class can provide faster implementations.