Interface AnyMatrix

    • Method Summary

      Modifier and Type Method Description
      int getColumnDimension()
      Returns the number of columns in the matrix.
      int getRowDimension()
      Returns the number of rows in the matrix.
      boolean isSquare()
      Is this a square matrix?
    • Method Detail

      • isSquare

        boolean isSquare()
        Is this a square matrix?
        Returns:
        true if the matrix is square (rowDimension = columnDimension)
      • getRowDimension

        int getRowDimension()
        Returns the number of rows in the matrix.
        Returns:
        rowDimension
      • getColumnDimension

        int getColumnDimension()
        Returns the number of columns in the matrix.
        Returns:
        columnDimension