Package org.ejml.dense.row.misc
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 -
Method Summary
Modifier and TypeMethodDescriptionstatic voidelementDiv(org.ejml.data.FMatrixD1 A, org.ejml.data.FMatrixD1 B) static <T extends org.ejml.data.FMatrixD1>
TelementDiv(T A, T B, T output) static <T extends org.ejml.data.FMatrixD1>
TelementExp(T A, T output) static <T extends org.ejml.data.FMatrixD1>
TelementLog(T A, T output) static floatelementMax(org.ejml.data.FMatrixD1 a, @Nullable org.ejml.data.ElementLocation loc) static floatelementMaxAbs(org.ejml.data.FMatrixD1 a, @Nullable org.ejml.data.ElementLocation loc) static floatelementMin(org.ejml.data.FMatrixD1 a, @Nullable org.ejml.data.ElementLocation loc) static floatelementMinAbs(org.ejml.data.FMatrixD1 a, @Nullable org.ejml.data.ElementLocation loc) static voidelementMult(org.ejml.data.FMatrixD1 A, org.ejml.data.FMatrixD1 B) static <T extends org.ejml.data.FMatrixD1>
TelementMult(T A, T B, T output) static <T extends org.ejml.data.FMatrixD1>
TelementPower(float a, T B, T output) static <T extends org.ejml.data.FMatrixD1>
TelementPower(T A, float b, T output) static <T extends org.ejml.data.FMatrixD1>
TelementPower(T A, T B, T output) static floatelementSum(org.ejml.data.FMatrixD1 mat) static floatelementSumAbs(org.ejml.data.FMatrixD1 mat) static voidextract(org.ejml.data.FMatrixRMaj src, int srcY0, int srcX0, org.ejml.data.FMatrixRMaj dst, int dstY0, int dstX0, int numRows, int numCols)
-
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)
-