Documentation of 'org.ejml.data.ComplexMatrix64F' Java class
ComplexMatrix64F
org.ejml.data

Interface ComplexMatrix64F

  • All Superinterfaces:
    Matrix, java.io.Serializable
    All Known Implementing Classes:
    CD1Matrix64F, CDenseMatrix64F


    public interface ComplexMatrix64F
    extends Matrix
    Interface for all complex 64 bit floating point rectangular matrices.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      void get(int row, int col, Complex64F output)
      Returns the complex value of the matrix's element
      int getDataLength()
      Returns the number of elements in the internal data array
      double getImaginary(int row, int col)
      Returns the imaginary component of the matrix's element.
      double getReal(int row, int col)
      Returns the real component of the matrix's element.
      void set(int row, int col, double real, double imaginary)
      Set's the complex value of the matrix's element
      void setImaginary(int row, int col, double val)
      Sets the imaginary component of the matrix's element.
      void setReal(int row, int col, double val)
      Sets the real component of the matrix's element.
    • Method Detail

      • get

        void get(int row,
                 int col,
                 Complex64F output)
        Returns the complex value of the matrix's element
        Parameters:
        row - Matrix element's row index..
        col - Matrix element's column index.
        output - Storage for the complex number
      • set

        void set(int row,
                 int col,
                 double real,
                 double imaginary)
        Set's the complex value of the matrix's element
        Parameters:
        row - Matrix element's row index..
        col - Matrix element's column index.
        real - The real component
        imaginary - The imaginary component
      • getReal

        double getReal(int row,
                       int col)
        Returns the real component of the matrix's element.
        Parameters:
        row - Matrix element's row index..
        col - Matrix element's column index.
        Returns:
        The specified element's value.
      • setReal

        void setReal(int row,
                     int col,
                     double val)
        Sets the real component of the matrix's element.
        Parameters:
        row - Matrix element's row index..
        col - Matrix element's column index.
        val - The element's new value.
      • getImaginary

        double getImaginary(int row,
                            int col)
        Returns the imaginary component of the matrix's element.
        Parameters:
        row - Matrix element's row index..
        col - Matrix element's column index.
        Returns:
        The specified element's value.
      • setImaginary

        void setImaginary(int row,
                          int col,
                          double val)
        Sets the imaginary component of the matrix's element.
        Parameters:
        row - Matrix element's row index..
        col - Matrix element's column index.
        val - The element's new value.
      • getDataLength

        int getDataLength()
        Returns the number of elements in the internal data array
        Returns:
        Number of elements in the data array.

DMelt 3.0 © DataMelt by jWork.ORG

You see the box below because you did not login.