Interface Matrix2D<N extends java.lang.Comparable<N>,​M extends Matrix2D<N,​M>>

    • Method Detail

      • equals

        default boolean equals​(Access2D<?> another,
                               NumberContext accuracy)
        Returns:
        true if the same size/shape and elements are equal to the given accuracy. norm of the difference between [this] and [another] is zero within the limits of [precision].
      • toScalar

        Scalar<N> toScalar​(int row,
                           int col)
        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.
      • transpose

        M transpose()