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 Summary

    Constructors
    Constructor Description
    ImplCommonOps_FDRM()  
  • Method Summary

    Modifier and Type Method Description
    static void elementDiv​(org.ejml.data.FMatrixD1 A, org.ejml.data.FMatrixD1 B)  
    static <T extends org.ejml.data.FMatrixD1>
    T
    elementDiv​(T A, T B, T output)  
    static <T extends org.ejml.data.FMatrixD1>
    T
    elementExp​(T A, T output)  
    static <T extends org.ejml.data.FMatrixD1>
    T
    elementLog​(T A, T output)  
    static float elementMax​(org.ejml.data.FMatrixD1 a, @Nullable org.ejml.data.ElementLocation loc)  
    static float elementMaxAbs​(org.ejml.data.FMatrixD1 a, @Nullable org.ejml.data.ElementLocation loc)  
    static float elementMin​(org.ejml.data.FMatrixD1 a, @Nullable org.ejml.data.ElementLocation loc)  
    static float elementMinAbs​(org.ejml.data.FMatrixD1 a, @Nullable org.ejml.data.ElementLocation loc)  
    static void elementMult​(org.ejml.data.FMatrixD1 A, org.ejml.data.FMatrixD1 B)  
    static <T extends org.ejml.data.FMatrixD1>
    T
    elementMult​(T A, T B, T output)  
    static <T extends org.ejml.data.FMatrixD1>
    T
    elementPower​(float a, T B, T output)  
    static <T extends org.ejml.data.FMatrixD1>
    T
    elementPower​(T A, float b, T output)  
    static <T extends org.ejml.data.FMatrixD1>
    T
    elementPower​(T A, T B, T output)  
    static float elementSum​(org.ejml.data.FMatrixD1 mat)  
    static float elementSumAbs​(org.ejml.data.FMatrixD1 mat)  
    static void extract​(org.ejml.data.FMatrixRMaj src, int srcY0, int srcX0, org.ejml.data.FMatrixRMaj dst, int dstY0, int dstX0, int numRows, int numCols)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ImplCommonOps_FDRM

      public ImplCommonOps_FDRM()
  • Method Details

    • extract

      public static void extract​(org.ejml.data.FMatrixRMaj src, int srcY0, int srcX0, org.ejml.data.FMatrixRMaj dst, int dstY0, int dstX0, int numRows, int numCols)
    • elementMax

      public static float elementMax​(org.ejml.data.FMatrixD1 a, @Nullable @Nullable org.ejml.data.ElementLocation loc)
    • elementMaxAbs

      public static float elementMaxAbs​(org.ejml.data.FMatrixD1 a, @Nullable @Nullable org.ejml.data.ElementLocation loc)
    • elementMin

      public static float elementMin​(org.ejml.data.FMatrixD1 a, @Nullable @Nullable org.ejml.data.ElementLocation loc)
    • elementMinAbs

      public static float elementMinAbs​(org.ejml.data.FMatrixD1 a, @Nullable @Nullable org.ejml.data.ElementLocation loc)
    • elementMult

      public static void elementMult​(org.ejml.data.FMatrixD1 A, org.ejml.data.FMatrixD1 B)
    • elementMult

      public static <T extends org.ejml.data.FMatrixD1> T elementMult​(T A, T B, @Nullable T output)
    • elementDiv

      public static void elementDiv​(org.ejml.data.FMatrixD1 A, org.ejml.data.FMatrixD1 B)
    • elementDiv

      public static <T extends org.ejml.data.FMatrixD1> T elementDiv​(T A, T B, @Nullable T output)
    • elementSum

      public static float elementSum​(org.ejml.data.FMatrixD1 mat)
    • elementSumAbs

      public static float elementSumAbs​(org.ejml.data.FMatrixD1 mat)
    • elementPower

      public static <T extends org.ejml.data.FMatrixD1> T elementPower​(T A, T B, @Nullable T output)
    • elementPower

      public static <T extends org.ejml.data.FMatrixD1> T elementPower​(float a, T B, @Nullable T output)
    • elementPower

      public static <T extends org.ejml.data.FMatrixD1> T elementPower​(T A, float b, @Nullable T output)
    • elementLog

      public static <T extends org.ejml.data.FMatrixD1> T elementLog​(T A, @Nullable T output)
    • elementExp

      public static <T extends org.ejml.data.FMatrixD1> T elementExp​(T A, @Nullable T output)