Uses of Class
org.ejml.data.DMatrix3
-
Uses of DMatrix3 in org.ejml.data
-
Uses of DMatrix3 in org.ejml.dense.fixed
Modifier and TypeMethodDescriptionstatic DMatrix3
CommonOps_DDF3.extractColumn
(DMatrix3x3 a, int column, DMatrix3 out) Extracts the column from the matrix a.static DMatrix3
CommonOps_DDF3.extractRow
(DMatrix3x3 a, int row, DMatrix3 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_DDF3.changeSign
(DMatrix3 a) Changes the sign of every element in the vector.
ai = -aistatic void
CommonOps_DDF3.diag
(DMatrix3x3 input, DMatrix3 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 double
Performs the vector dot product:
c = a * b
c ≥ ∑k=1:n { bk * ak }static void
CommonOps_DDF3.elementDiv
(DMatrix3 a, DMatrix3 b) Performs an element by element division operation:
ai = ai / bistatic void
CommonOps_DDF3.elementDiv
(DMatrix3 a, DMatrix3 b, DMatrix3 c) Performs an element by element division operation:
ci = ai / bistatic double
CommonOps_DDF3.elementMax
(DMatrix3 a) Returns the value of the element in the vector that has the largest value.
Max{ ai } for all istatic double
CommonOps_DDF3.elementMaxAbs
(DMatrix3 a) Returns the absolute value of the element in the vector that has the largest absolute value.
Max{ |ai| } for all istatic double
CommonOps_DDF3.elementMin
(DMatrix3 a) Returns the value of the element in the vector that has the minimum value.
Min{ ai } for allstatic double
CommonOps_DDF3.elementMinAbs
(DMatrix3 a) Returns the absolute value of the element in the vector that has the smallest absolute value.
Min{ |ai| } for all istatic void
CommonOps_DDF3.elementMult
(DMatrix3 a, DMatrix3 b) Performs an element by element multiplication operation:
ai = ai * bistatic void
CommonOps_DDF3.elementMult
(DMatrix3 a, DMatrix3 b, DMatrix3 c) Performs an element by element multiplication operation:
ci = ai * bjstatic DMatrix3
CommonOps_DDF3.extractColumn
(DMatrix3x3 a, int column, DMatrix3 out) Extracts the column from the matrix a.static DMatrix3
CommonOps_DDF3.extractRow
(DMatrix3x3 a, int row, DMatrix3 out) Extracts the row from the matrix a.static double
static void
Sets every element in the vector to the specified value.
ai = valuestatic boolean
MatrixFeatures_DDF3.hasUncountable
(DMatrix3 a) static boolean
MatrixFeatures_DDF3.isIdentical
(DMatrix3 a, DMatrix3 b, double tol) static void
CommonOps_DDF3.mult
(DMatrix3 a, DMatrix3x3 b, DMatrix3 c) Performs vector to matrix multiplication:
c = a * b
cj = ∑k=1:n { bk * akj }static void
CommonOps_DDF3.mult
(DMatrix3x3 a, DMatrix3 b, DMatrix3 c) Performs matrix to vector multiplication:
c = a * b
ci = ∑k=1:n { aik * bk}static void
CommonOps_DDF3.multAddOuter
(double alpha, DMatrix3x3 A, double beta, DMatrix3 u, DMatrix3 v, DMatrix3x3 C) C = αA + βu*vTstatic void
NormOps_DDF3.normalizeF
(DMatrix3 M) static double
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_DDF3.subtractEquals
(DMatrix3 a, DMatrix3 b) Performs the following operation:
a = a - b
ai = ai - bi -
Uses of DMatrix3 in org.ejml.ops
Modifier and TypeMethodDescriptionstatic DMatrix3
DConvertMatrixStruct.convert
(DMatrixRMaj input, @Nullable DMatrix3 output) ConvertsDMatrixRMaj
intoDMatrix3
Modifier and TypeMethodDescriptionstatic DMatrixRMaj
DConvertMatrixStruct.convert
(DMatrix3 input, @Nullable DMatrixRMaj output) ConvertsDMatrix3
intoDMatrixRMaj
.static DMatrix3
DConvertMatrixStruct.convert
(DMatrixRMaj input, @Nullable DMatrix3 output) ConvertsDMatrixRMaj
intoDMatrix3