public interface  org.apache.commons.math.linear.FieldMatrix extends java.lang.Object implements org.apache.commons.math.linear.AnyMatrix
{
public abstract org.apache.commons.math.Field getField();
public abstract org.apache.commons.math.linear.FieldMatrix createMatrix(int, int) throws org.apache.commons.math.exception.NotStrictlyPositiveException;
public abstract org.apache.commons.math.linear.FieldMatrix copy();
public abstract org.apache.commons.math.linear.FieldMatrix add(org.apache.commons.math.linear.FieldMatrix) throws org.apache.commons.math.linear.MatrixDimensionMismatchException;
public abstract org.apache.commons.math.linear.FieldMatrix subtract(org.apache.commons.math.linear.FieldMatrix) throws org.apache.commons.math.linear.MatrixDimensionMismatchException;
public abstract org.apache.commons.math.linear.FieldMatrix scalarAdd(org.apache.commons.math.FieldElement);
public abstract org.apache.commons.math.linear.FieldMatrix scalarMultiply(org.apache.commons.math.FieldElement);
public abstract org.apache.commons.math.linear.FieldMatrix multiply(org.apache.commons.math.linear.FieldMatrix) throws org.apache.commons.math.exception.DimensionMismatchException;
public abstract org.apache.commons.math.linear.FieldMatrix preMultiply(org.apache.commons.math.linear.FieldMatrix) throws org.apache.commons.math.exception.DimensionMismatchException;
public abstract org.apache.commons.math.linear.FieldMatrix power(int) throws org.apache.commons.math.linear.NonSquareMatrixException, org.apache.commons.math.exception.NotPositiveException;
public abstract org.apache.commons.math.FieldElement[][] getData();
public abstract org.apache.commons.math.linear.FieldMatrix getSubMatrix(int, int, int, int) throws org.apache.commons.math.exception.NumberIsTooSmallException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.linear.FieldMatrix getSubMatrix(int[], int[]) throws org.apache.commons.math.exception.NoDataException, org.apache.commons.math.exception.NullArgumentException, org.apache.commons.math.exception.OutOfRangeException;
public abstract void copySubMatrix(int, int, int, int, org.apache.commons.math.FieldElement[][]) throws org.apache.commons.math.linear.MatrixDimensionMismatchException, org.apache.commons.math.exception.NumberIsTooSmallException, org.apache.commons.math.exception.OutOfRangeException;
public abstract void copySubMatrix(int[], int[], org.apache.commons.math.FieldElement[][]) throws org.apache.commons.math.linear.MatrixDimensionMismatchException, org.apache.commons.math.exception.NoDataException, org.apache.commons.math.exception.NullArgumentException, org.apache.commons.math.exception.OutOfRangeException;
public abstract void setSubMatrix(org.apache.commons.math.FieldElement[][], int, int) throws org.apache.commons.math.exception.DimensionMismatchException, org.apache.commons.math.exception.OutOfRangeException, org.apache.commons.math.exception.NoDataException, org.apache.commons.math.exception.NullArgumentException;
public abstract org.apache.commons.math.linear.FieldMatrix getRowMatrix(int) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract void setRowMatrix(int, org.apache.commons.math.linear.FieldMatrix) throws org.apache.commons.math.linear.MatrixDimensionMismatchException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.linear.FieldMatrix getColumnMatrix(int) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract void setColumnMatrix(int, org.apache.commons.math.linear.FieldMatrix) throws org.apache.commons.math.linear.MatrixDimensionMismatchException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.linear.FieldVector getRowVector(int) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract void setRowVector(int, org.apache.commons.math.linear.FieldVector) throws org.apache.commons.math.linear.MatrixDimensionMismatchException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.linear.FieldVector getColumnVector(int) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract void setColumnVector(int, org.apache.commons.math.linear.FieldVector) throws org.apache.commons.math.linear.MatrixDimensionMismatchException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.FieldElement[] getRow(int) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract void setRow(int, org.apache.commons.math.FieldElement[]) throws org.apache.commons.math.linear.MatrixDimensionMismatchException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.FieldElement[] getColumn(int) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract void setColumn(int, org.apache.commons.math.FieldElement[]) throws org.apache.commons.math.linear.MatrixDimensionMismatchException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.FieldElement getEntry(int, int) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract void setEntry(int, int, org.apache.commons.math.FieldElement) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract void addToEntry(int, int, org.apache.commons.math.FieldElement) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract void multiplyEntry(int, int, org.apache.commons.math.FieldElement) throws org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.linear.FieldMatrix transpose();
public abstract org.apache.commons.math.FieldElement getTrace() throws org.apache.commons.math.linear.NonSquareMatrixException;
public abstract org.apache.commons.math.FieldElement[] operate(org.apache.commons.math.FieldElement[]) throws org.apache.commons.math.exception.DimensionMismatchException;
public abstract org.apache.commons.math.linear.FieldVector operate(org.apache.commons.math.linear.FieldVector) throws org.apache.commons.math.exception.DimensionMismatchException;
public abstract org.apache.commons.math.FieldElement[] preMultiply(org.apache.commons.math.FieldElement[]) throws org.apache.commons.math.exception.DimensionMismatchException;
public abstract org.apache.commons.math.linear.FieldVector preMultiply(org.apache.commons.math.linear.FieldVector) throws org.apache.commons.math.exception.DimensionMismatchException;
public abstract org.apache.commons.math.FieldElement walkInRowOrder(org.apache.commons.math.linear.FieldMatrixChangingVisitor);
public abstract org.apache.commons.math.FieldElement walkInRowOrder(org.apache.commons.math.linear.FieldMatrixPreservingVisitor);
public abstract org.apache.commons.math.FieldElement walkInRowOrder(org.apache.commons.math.linear.FieldMatrixChangingVisitor, int, int, int, int) throws org.apache.commons.math.exception.OutOfRangeException, org.apache.commons.math.exception.NumberIsTooSmallException;
public abstract org.apache.commons.math.FieldElement walkInRowOrder(org.apache.commons.math.linear.FieldMatrixPreservingVisitor, int, int, int, int) throws org.apache.commons.math.exception.OutOfRangeException, org.apache.commons.math.exception.NumberIsTooSmallException;
public abstract org.apache.commons.math.FieldElement walkInColumnOrder(org.apache.commons.math.linear.FieldMatrixChangingVisitor);
public abstract org.apache.commons.math.FieldElement walkInColumnOrder(org.apache.commons.math.linear.FieldMatrixPreservingVisitor);
public abstract org.apache.commons.math.FieldElement walkInColumnOrder(org.apache.commons.math.linear.FieldMatrixChangingVisitor, int, int, int, int) throws org.apache.commons.math.exception.NumberIsTooSmallException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.FieldElement walkInColumnOrder(org.apache.commons.math.linear.FieldMatrixPreservingVisitor, int, int, int, int) throws org.apache.commons.math.exception.NumberIsTooSmallException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.FieldElement walkInOptimizedOrder(org.apache.commons.math.linear.FieldMatrixChangingVisitor);
public abstract org.apache.commons.math.FieldElement walkInOptimizedOrder(org.apache.commons.math.linear.FieldMatrixPreservingVisitor);
public abstract org.apache.commons.math.FieldElement walkInOptimizedOrder(org.apache.commons.math.linear.FieldMatrixChangingVisitor, int, int, int, int) throws org.apache.commons.math.exception.NumberIsTooSmallException, org.apache.commons.math.exception.OutOfRangeException;
public abstract org.apache.commons.math.FieldElement walkInOptimizedOrder(org.apache.commons.math.linear.FieldMatrixPreservingVisitor, int, int, int, int) throws org.apache.commons.math.exception.NumberIsTooSmallException, org.apache.commons.math.exception.OutOfRangeException;
}