Uses of Class
org.apache.sis.referencing.operation.matrix.MismatchedMatrixSizeException

Package
Description
Matrix implementations for spatiotemporal referencing.
  • Uses of MismatchedMatrixSizeException in org.apache.sis.referencing.operation.matrix

    Modifier and Type
    Method
    Description
    static Matrix1
    Matrix1.castOrCopy(org.opengis.referencing.operation.Matrix matrix)
    Casts or copies the given matrix to a Matrix1 implementation.
    static Matrix2
    Matrix2.castOrCopy(org.opengis.referencing.operation.Matrix matrix)
    Casts or copies the given matrix to a Matrix2 implementation.
    static Matrix3
    Matrix3.castOrCopy(org.opengis.referencing.operation.Matrix matrix)
    Casts or copies the given matrix to a Matrix3 implementation.
    static Matrix4
    Matrix4.castOrCopy(org.opengis.referencing.operation.Matrix matrix)
    Casts or copies the given matrix to a Matrix4 implementation.
    (package private) static void
    MatrixSIS.ensureSizeMatch(int numRow, int numCol, org.opengis.referencing.operation.Matrix matrix)
    Ensures that the given matrix has the given dimension.
    static MatrixSIS
    Matrices.multiply(org.opengis.referencing.operation.Matrix m1, org.opengis.referencing.operation.Matrix m2)
    Returns a new matrix which is the result of multiplying the first matrix with the second one.
    MatrixSIS.multiply(org.opengis.referencing.operation.Matrix matrix)
    Returns a new matrix which is the result of multiplying this matrix with the specified one.
    void
    GeneralMatrix.setMatrix(org.opengis.referencing.operation.Matrix matrix)
    Sets this matrix to the values of another matrix.
    void
    MatrixSIS.setMatrix(org.opengis.referencing.operation.Matrix matrix)
    Sets this matrix to the values of another matrix.
    MatrixSIS.solve(org.opengis.referencing.operation.Matrix matrix)
    Returns the value of U which solves this × U = matrix.
    NonSquareMatrix.solve(org.opengis.referencing.operation.Matrix matrix)
    Returns the value of U which solves this × U = matrix.