Class ImplCommonOps_DDRM

java.lang.Object
org.ejml.dense.row.misc.ImplCommonOps_DDRM

public class ImplCommonOps_DDRM extends Object
Implementations of common ops routines for DMatrixRMaj. In general there is no need to directly invoke these functions.
  • Constructor Details

    • ImplCommonOps_DDRM

      public ImplCommonOps_DDRM()
  • Method Details

    • extract

      public static void extract(DMatrixRMaj src, int srcY0, int srcX0, DMatrixRMaj dst, int dstY0, int dstX0, int numRows, int numCols)
    • elementMax

      public static double elementMax(DMatrixD1 a, @Nullable @Nullable ElementLocation loc)
    • elementMaxAbs

      public static double elementMaxAbs(DMatrixD1 a, @Nullable @Nullable ElementLocation loc)
    • elementMin

      public static double elementMin(DMatrixD1 a, @Nullable @Nullable ElementLocation loc)
    • elementMinAbs

      public static double elementMinAbs(DMatrixD1 a, @Nullable @Nullable ElementLocation loc)
    • elementMult

      public static void elementMult(DMatrixD1 A, DMatrixD1 B)
    • elementMult

      public static <T extends DMatrixD1> T elementMult(T A, T B, @Nullable T output)
    • elementDiv

      public static void elementDiv(DMatrixD1 A, DMatrixD1 B)
    • elementDiv

      public static <T extends DMatrixD1> T elementDiv(T A, T B, @Nullable T output)
    • elementSum

      public static double elementSum(DMatrixD1 mat)
    • elementSumAbs

      public static double elementSumAbs(DMatrixD1 mat)
    • elementPower

      public static <T extends DMatrixD1> T elementPower(T A, T B, @Nullable T output)
    • elementPower

      public static <T extends DMatrixD1> T elementPower(double a, T B, @Nullable T output)
    • elementPower

      public static <T extends DMatrixD1> T elementPower(T A, double b, @Nullable T output)
    • elementLog

      public static <T extends DMatrixD1> T elementLog(T A, @Nullable T output)
    • elementExp

      public static <T extends DMatrixD1> T elementExp(T A, @Nullable T output)