Interface SimpleOperations<T extends org.ejml.data.Matrix>

    • Method Detail

      • set

        void set​(T A,
                 int row,
                 int column,
                 double value)
      • set

        void set​(T A,
                 int row,
                 int column,
                 double real,
                 double imaginary)
      • get

        double get​(T A,
                   int row,
                   int column)
      • get

        void get​(T A,
                 int row,
                 int column,
                 org.ejml.data.Complex_F64 value)
      • fill

        void fill​(T A,
                  double value)
      • transpose

        void transpose​(T input,
                       T output)
      • mult

        void mult​(T A,
                  T B,
                  T output)
      • multTransA

        void multTransA​(T A,
                        T B,
                        T output)
      • kron

        void kron​(T A,
                  T B,
                  T output)
      • plus

        void plus​(T A,
                  T B,
                  T output)
      • minus

        void minus​(T A,
                   T B,
                   T output)
      • minus

        void minus​(T A,
                   double b,
                   T output)
      • plus

        void plus​(T A,
                  double b,
                  T output)
      • plus

        void plus​(T A,
                  double beta,
                  T b,
                  T output)
      • plus

        void plus​(double alpha,
                  T A,
                  double beta,
                  T b,
                  T output)
      • dot

        double dot​(T A,
                   T v)
      • scale

        void scale​(T A,
                   double val,
                   T output)
      • divide

        void divide​(T A,
                    double val,
                    T output)
      • invert

        boolean invert​(T A,
                       T output)
      • setIdentity

        void setIdentity​(T A)
      • pseudoInverse

        void pseudoInverse​(T A,
                           T output)
      • solve

        boolean solve​(T A,
                      T X,
                      T B)
      • zero

        void zero​(T A)
      • normF

        double normF​(T A)
      • conditionP2

        double conditionP2​(T A)
      • determinant

        double determinant​(T A)
      • trace

        double trace​(T A)
      • setRow

        void setRow​(T A,
                    int row,
                    int startColumn,
                    double... values)
      • setColumn

        void setColumn​(T A,
                       int column,
                       int startRow,
                       double... values)
      • extract

        void extract​(T src,
                     int srcY0,
                     int srcY1,
                     int srcX0,
                     int srcX1,
                     T dst,
                     int dstY0,
                     int dstX0)
      • diag

        T diag​(T A)
      • hasUncountable

        boolean hasUncountable​(T M)
      • changeSign

        void changeSign​(T a)
      • elementMaxAbs

        double elementMaxAbs​(T A)
      • elementMinAbs

        double elementMinAbs​(T A)
      • elementSum

        double elementSum​(T A)
      • elementMult

        void elementMult​(T A,
                         T B,
                         T output)
      • elementDiv

        void elementDiv​(T A,
                        T B,
                        T output)
      • elementPower

        void elementPower​(T A,
                          T B,
                          T output)
      • elementPower

        void elementPower​(T A,
                          double b,
                          T output)
      • elementExp

        void elementExp​(T A,
                        T output)
      • elementLog

        void elementLog​(T A,
                        T output)
      • isIdentical

        boolean isIdentical​(T A,
                            T B,
                            double tol)
      • print

        void print​(java.io.PrintStream out,
                   org.ejml.data.Matrix mat,
                   java.lang.String format)