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

    • Constructor Detail

    • Method Detail

      • conjugate

        public MatrixStore<N> conjugate()
        Description copied from interface: MatrixStore
        Returns the conjugate transpose of this matrix. The conjugate transpose is also known as adjoint matrix, adjugate matrix, hermitian adjoint or hermitian transpose. (The conjugate matrix is the complex conjugate of each element. This NOT what is returned here!)
        See Also:
        VectorSpace.conjugate()
      • get

        public N get​(int aRow,
                     int aCol)
      • multiply

        public MatrixStore<N> multiply​(MatrixStore<N> right)
        Parameters:
        right - The multiplicand
        Returns:
        this * multiplicand.
      • 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.