Uses of Class
org.ejml.data.FMatrix4
-
Uses of FMatrix4 in org.ejml.data
-
Uses of FMatrix4 in org.ejml.dense.fixed
Modifier and TypeMethodDescriptionstatic FMatrix4
CommonOps_FDF4.extractColumn
(FMatrix4x4 a, int column, FMatrix4 out) Extracts the column from the matrix a.static FMatrix4
CommonOps_FDF4.extractRow
(FMatrix4x4 a, int row, FMatrix4 out) Extracts the row from the matrix a.Modifier and TypeMethodDescriptionstatic void
Performs the following operation:
c = a + b
ci = ai + bistatic void
Performs the following operation:
a = a + b
ai = ai + bistatic void
CommonOps_FDF4.changeSign
(FMatrix4 a) Changes the sign of every element in the vector.
ai = -aistatic void
CommonOps_FDF4.diag
(FMatrix4x4 input, FMatrix4 out) Extracts all diagonal elements from 'input' and places them inside the 'out' vector.static void
Performs an in-place element by element scalar division.static void
Performs an element by element scalar division.static float
Performs the vector dot product:
c = a * b
c ≥ ∑k=1:n { bk * ak }static void
CommonOps_FDF4.elementDiv
(FMatrix4 a, FMatrix4 b) Performs an element by element division operation:
ai = ai / bistatic void
CommonOps_FDF4.elementDiv
(FMatrix4 a, FMatrix4 b, FMatrix4 c) Performs an element by element division operation:
ci = ai / bistatic float
CommonOps_FDF4.elementMax
(FMatrix4 a) Returns the value of the element in the vector that has the largest value.
Max{ ai } for all istatic float
CommonOps_FDF4.elementMaxAbs
(FMatrix4 a) Returns the absolute value of the element in the vector that has the largest absolute value.
Max{ |ai| } for all istatic float
CommonOps_FDF4.elementMin
(FMatrix4 a) Returns the value of the element in the vector that has the minimum value.
Min{ ai } for allstatic float
CommonOps_FDF4.elementMinAbs
(FMatrix4 a) Returns the absolute value of the element in the vector that has the smallest absolute value.
Min{ |ai| } for all istatic void
CommonOps_FDF4.elementMult
(FMatrix4 a, FMatrix4 b) Performs an element by element multiplication operation:
ai = ai * bistatic void
CommonOps_FDF4.elementMult
(FMatrix4 a, FMatrix4 b, FMatrix4 c) Performs an element by element multiplication operation:
ci = ai * bjstatic FMatrix4
CommonOps_FDF4.extractColumn
(FMatrix4x4 a, int column, FMatrix4 out) Extracts the column from the matrix a.static FMatrix4
CommonOps_FDF4.extractRow
(FMatrix4x4 a, int row, FMatrix4 out) Extracts the row from the matrix a.static float
static void
Sets every element in the vector to the specified value.
ai = valuestatic boolean
MatrixFeatures_FDF4.hasUncountable
(FMatrix4 a) static boolean
MatrixFeatures_FDF4.isIdentical
(FMatrix4 a, FMatrix4 b, float tol) static void
CommonOps_FDF4.mult
(FMatrix4 a, FMatrix4x4 b, FMatrix4 c) Performs vector to matrix multiplication:
c = a * b
cj = ∑k=1:n { bk * akj }static void
CommonOps_FDF4.mult
(FMatrix4x4 a, FMatrix4 b, FMatrix4 c) Performs matrix to vector multiplication:
c = a * b
ci = ∑k=1:n { aik * bk}static void
CommonOps_FDF4.multAddOuter
(float alpha, FMatrix4x4 A, float beta, FMatrix4 u, FMatrix4 v, FMatrix4x4 C) C = αA + βu*vTstatic void
NormOps_FDF4.normalizeF
(FMatrix4 M) static float
static void
Performs an in-place element by element scalar multiplication.
aij = α*aijstatic void
Performs an element by element scalar multiplication.
bi = α*aistatic void
Performs the following operation:
c = a - b
ci = ai - bistatic void
CommonOps_FDF4.subtractEquals
(FMatrix4 a, FMatrix4 b) Performs the following operation:
a = a - b
ai = ai - bi -
Uses of FMatrix4 in org.ejml.ops
Modifier and TypeMethodDescriptionstatic FMatrix4
static FMatrix4
FConvertMatrixStruct.convert
(FMatrixRMaj input, @Nullable FMatrix4 output) ConvertsFMatrixRMaj
intoFMatrix4
Modifier and TypeMethodDescriptionstatic FMatrix4
static FMatrixRMaj
FConvertMatrixStruct.convert
(FMatrix4 input, @Nullable FMatrixRMaj output) ConvertsFMatrix4
intoFMatrixRMaj
.static FMatrix4
FConvertMatrixStruct.convert
(FMatrixRMaj input, @Nullable FMatrix4 output) ConvertsFMatrixRMaj
intoFMatrix4