Uses of Class
org.ejml.data.DMatrix4
Packages that use DMatrix4
-
Uses of DMatrix4 in org.ejml.data
Constructors in org.ejml.data with parameters of type DMatrix4 -
Uses of DMatrix4 in org.ejml.dense.fixed
Methods in org.ejml.dense.fixed that return DMatrix4Modifier and TypeMethodDescriptionstatic DMatrix4CommonOps_DDF4.extractColumn(DMatrix4x4 a, int column, DMatrix4 out) Extracts the column from the matrix a.static DMatrix4CommonOps_DDF4.extractRow(DMatrix4x4 a, int row, DMatrix4 out) Extracts the row from the matrix a.Methods in org.ejml.dense.fixed with parameters of type DMatrix4Modifier and TypeMethodDescriptionstatic voidPerforms the following operation:
c = a + b
ci = ai + bistatic voidPerforms the following operation:
a = a + b
ai = ai + bistatic voidCommonOps_DDF4.changeSign(DMatrix4 a) Changes the sign of every element in the vector.
ai = -aistatic voidCommonOps_DDF4.diag(DMatrix4x4 input, DMatrix4 out) Extracts all diagonal elements from 'input' and places them inside the 'out' vector.static voidPerforms an in-place element by element scalar division.static voidPerforms an element by element scalar division.static doublePerforms the vector dot product:
c = a * b
c ≥ ∑k=1:n { bk * ak }static voidCommonOps_DDF4.elementDiv(DMatrix4 a, DMatrix4 b) Performs an element by element division operation:
ai = ai / bistatic voidCommonOps_DDF4.elementDiv(DMatrix4 a, DMatrix4 b, DMatrix4 c) Performs an element by element division operation:
ci = ai / bistatic doubleCommonOps_DDF4.elementMax(DMatrix4 a) Returns the value of the element in the vector that has the largest value.
Max{ ai } for all istatic doubleCommonOps_DDF4.elementMaxAbs(DMatrix4 a) Returns the absolute value of the element in the vector that has the largest absolute value.
Max{ |ai| } for all istatic doubleCommonOps_DDF4.elementMin(DMatrix4 a) Returns the value of the element in the vector that has the minimum value.
Min{ ai } for allstatic doubleCommonOps_DDF4.elementMinAbs(DMatrix4 a) Returns the absolute value of the element in the vector that has the smallest absolute value.
Min{ |ai| } for all istatic voidCommonOps_DDF4.elementMult(DMatrix4 a, DMatrix4 b) Performs an element by element multiplication operation:
ai = ai * bistatic voidCommonOps_DDF4.elementMult(DMatrix4 a, DMatrix4 b, DMatrix4 c) Performs an element by element multiplication operation:
ci = ai * bjstatic DMatrix4CommonOps_DDF4.extractColumn(DMatrix4x4 a, int column, DMatrix4 out) Extracts the column from the matrix a.static DMatrix4CommonOps_DDF4.extractRow(DMatrix4x4 a, int row, DMatrix4 out) Extracts the row from the matrix a.static doublestatic voidSets every element in the vector to the specified value.
ai = valuestatic booleanMatrixFeatures_DDF4.hasUncountable(DMatrix4 a) static booleanMatrixFeatures_DDF4.isIdentical(DMatrix4 a, DMatrix4 b, double tol) static voidCommonOps_DDF4.mult(DMatrix4 a, DMatrix4x4 b, DMatrix4 c) Performs vector to matrix multiplication:
c = a * b
cj = ∑k=1:n { bk * akj }static voidCommonOps_DDF4.mult(DMatrix4x4 a, DMatrix4 b, DMatrix4 c) Performs matrix to vector multiplication:
c = a * b
ci = ∑k=1:n { aik * bk}static voidCommonOps_DDF4.multAddOuter(double alpha, DMatrix4x4 A, double beta, DMatrix4 u, DMatrix4 v, DMatrix4x4 C) C = αA + βu*vTstatic voidNormOps_DDF4.normalizeF(DMatrix4 M) static doublestatic voidPerforms an in-place element by element scalar multiplication.
aij = α*aijstatic voidPerforms an element by element scalar multiplication.
bi = α*aistatic voidPerforms the following operation:
c = a - b
ci = ai - bistatic voidCommonOps_DDF4.subtractEquals(DMatrix4 a, DMatrix4 b) Performs the following operation:
a = a - b
ai = ai - bi -
Uses of DMatrix4 in org.ejml.ops
Methods in org.ejml.ops that return DMatrix4Modifier and TypeMethodDescriptionstatic DMatrix4static DMatrix4DConvertMatrixStruct.convert(DMatrixRMaj input, @Nullable DMatrix4 output) ConvertsDMatrixRMajintoDMatrix4Methods in org.ejml.ops with parameters of type DMatrix4Modifier and TypeMethodDescriptionstatic DMatrix4static DMatrixRMajDConvertMatrixStruct.convert(DMatrix4 input, @Nullable DMatrixRMaj output) ConvertsDMatrix4intoDMatrixRMaj.static DMatrix4DConvertMatrixStruct.convert(DMatrixRMaj input, @Nullable DMatrix4 output) ConvertsDMatrixRMajintoDMatrix4