Class NonSymmetricMatrixException

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private int column
      Column.
      private int row
      Row.
      private static long serialVersionUID
      Serializable version Id.
      private double threshold
      Threshold.
    • Constructor Summary

      Constructors 
      Constructor Description
      NonSymmetricMatrixException​(int row, int column, double threshold)
      Construct an exception.
    • Field Detail

      • serialVersionUID

        private static final long serialVersionUID
        Serializable version Id.
        See Also:
        Constant Field Values
      • row

        private final int row
        Row.
      • column

        private final int column
        Column.
      • threshold

        private final double threshold
        Threshold.
    • Constructor Detail

      • NonSymmetricMatrixException

        public NonSymmetricMatrixException​(int row,
                                           int column,
                                           double threshold)
        Construct an exception.
        Parameters:
        row - Row index.
        column - Column index.
        threshold - Relative symmetry threshold.
    • Method Detail

      • getRow

        public int getRow()
        Returns:
        the row index of the entry.
      • getColumn

        public int getColumn()
        Returns:
        the column index of the entry.
      • getThreshold

        public double getThreshold()
        Returns:
        the relative symmetry threshold.