Class ImplCommonOps_FDRM

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

@Generated("org.ejml.dense.row.misc.ImplCommonOps_DDRM") public class ImplCommonOps_FDRM extends Object
Implementations of common ops routines for FMatrixRMaj. In general there is no need to directly invoke these functions.
  • Constructor Details

    • ImplCommonOps_FDRM

      public ImplCommonOps_FDRM()
  • Method Details

    • extract

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

      public static float elementMax(FMatrixD1 a, @Nullable @Nullable ElementLocation loc)
    • elementMaxAbs

      public static float elementMaxAbs(FMatrixD1 a, @Nullable @Nullable ElementLocation loc)
    • elementMin

      public static float elementMin(FMatrixD1 a, @Nullable @Nullable ElementLocation loc)
    • elementMinAbs

      public static float elementMinAbs(FMatrixD1 a, @Nullable @Nullable ElementLocation loc)
    • elementMult

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

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

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

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

      public static float elementSum(FMatrixD1 mat)
    • elementSumAbs

      public static float elementSumAbs(FMatrixD1 mat)
    • elementPower

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

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

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

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

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