Class LowerSymmetricStore<N extends java.lang.Comparable<N>>

    • Field Detail

      • myHermitian

        private final boolean myHermitian
    • Constructor Detail

      • LowerSymmetricStore

        LowerSymmetricStore​(MatrixStore<N> base,
                            boolean hermitian)
    • Method Detail

      • doubleValue

        public double doubleValue​(int row,
                                  int col)
        Description copied from interface: Access2D
        Extracts one element of this matrix as a double.
        Parameters:
        row - A row index.
        col - A column index.
        Returns:
        One matrix element
      • get

        public N get​(int row,
                     int col)
      • toScalar

        public Scalar<N> toScalar​(int row,
                                  int col)
        Description copied from interface: Matrix2D
        Extracts one element of this matrix as a Scalar.
        Parameters:
        row - A row index.
        col - A column index.
        Returns:
        One matrix element as a Scalar.