Uses of Class
org.ejml.data.DMatrix6x6
Packages that use DMatrix6x6
-
Uses of DMatrix6x6 in org.ejml.data
Constructors in org.ejml.data with parameters of type DMatrix6x6 -
Uses of DMatrix6x6 in org.ejml.dense.fixed
Methods in org.ejml.dense.fixed that return DMatrix6x6Modifier and TypeMethodDescriptionstatic DMatrix6x6CommonOps_DDF6.transpose(DMatrix6x6 input, DMatrix6x6 output) Transposes matrix 'a' and stores the results in 'b':
bij = aji
where 'b' is the transpose of 'a'.Methods in org.ejml.dense.fixed with parameters of type DMatrix6x6Modifier and TypeMethodDescriptionstatic voidCommonOps_DDF6.add(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = a + b
cij = aij + bijstatic voidCommonOps_DDF6.addEquals(DMatrix6x6 a, DMatrix6x6 b) Performs the following operation:
a = a + b
aij = aij + bijstatic voidCommonOps_DDF6.changeSign(DMatrix6x6 a) Changes the sign of every element in the matrix.
aij = -aijstatic booleanCommonOps_DDF6.cholL(DMatrix6x6 A) Performs a lower Cholesky decomposition of matrix 'A' and stores result in A.static booleanCommonOps_DDF6.cholU(DMatrix6x6 A) Performs an upper Cholesky decomposition of matrix 'A' and stores result in A.static voidCommonOps_DDF6.diag(DMatrix6x6 input, DMatrix6 out) Extracts all diagonal elements from 'input' and places them inside the 'out' vector.static voidCommonOps_DDF6.divide(DMatrix6x6 a, double alpha) Performs an in-place element by element scalar division.static voidCommonOps_DDF6.divide(DMatrix6x6 a, double alpha, DMatrix6x6 b) Performs an element by element scalar division.static voidCommonOps_DDF6.elementDiv(DMatrix6x6 a, DMatrix6x6 b) Performs an element by element division operation:
aij = aij / bijstatic voidCommonOps_DDF6.elementDiv(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs an element by element division operation:
cij = aij / bijstatic doubleCommonOps_DDF6.elementMax(DMatrix6x6 a) Returns the value of the element in the matrix that has the largest value.
Max{ aij } for all i and jstatic doubleCommonOps_DDF6.elementMaxAbs(DMatrix6x6 a) Returns the absolute value of the element in the matrix that has the largest absolute value.
Max{ |aij| } for all i and jstatic doubleCommonOps_DDF6.elementMin(DMatrix6x6 a) Returns the value of the element in the matrix that has the minimum value.
Min{ aij } for all i and jstatic doubleCommonOps_DDF6.elementMinAbs(DMatrix6x6 a) Returns the absolute value of the element in the matrix that has the smallest absolute value.
Min{ |aij| } for all i and jstatic voidCommonOps_DDF6.elementMult(DMatrix6x6 a, DMatrix6x6 b) Performs an element by element multiplication operation:
aij = aij * bijstatic voidCommonOps_DDF6.elementMult(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs an element by element multiplication operation:
cij = aij * bijstatic DMatrix6CommonOps_DDF6.extractColumn(DMatrix6x6 a, int column, DMatrix6 out) Extracts the column from the matrix a.static DMatrix6CommonOps_DDF6.extractRow(DMatrix6x6 a, int row, DMatrix6 out) Extracts the row from the matrix a.static doubleNormOps_DDF6.fastNormF(DMatrix6x6 M) static voidCommonOps_DDF6.fill(DMatrix6x6 a, double v) Sets every element in the matrix to the specified value.
aij = valuestatic booleanMatrixFeatures_DDF6.hasUncountable(DMatrix6x6 a) static booleanMatrixFeatures_DDF6.isIdentical(DMatrix6x6 a, DMatrix6x6 b, double tol) static voidCommonOps_DDF6.mult(double alpha, DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = α * a * b
cij = α ∑k=1:n { aik * bkj}static voidCommonOps_DDF6.mult(DMatrix6 a, DMatrix6x6 b, DMatrix6 c) Performs vector to matrix multiplication:
c = a * b
cj = ∑k=1:n { bk * akj }static voidCommonOps_DDF6.mult(DMatrix6x6 a, DMatrix6 b, DMatrix6 c) Performs matrix to vector multiplication:
c = a * b
ci = ∑k=1:n { aik * bk}static voidCommonOps_DDF6.mult(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = a * b
cij = ∑k=1:n { aik * bkj}static voidCommonOps_DDF6.multAdd(double alpha, DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c += α * a * b
cij += α ∑k=1:n { aik * bkj}static voidCommonOps_DDF6.multAdd(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c += a * b
cij += ∑k=1:n { aik * bkj}static voidCommonOps_DDF6.multAddOuter(double alpha, DMatrix6x6 A, double beta, DMatrix6 u, DMatrix6 v, DMatrix6x6 C) C = αA + βu*vTstatic voidCommonOps_DDF6.multAddTransA(double alpha, DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c += α * aT * b
cij += α * ∑k=1:n { aki * bkj}static voidCommonOps_DDF6.multAddTransA(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c += aT * b
cij += ∑k=1:n { aki * bkj}static voidCommonOps_DDF6.multAddTransAB(double alpha, DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c += α*aT * bT
cij += α*∑k=1:n { aki * bjk}static voidCommonOps_DDF6.multAddTransAB(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c += aT * bT
cij += ∑k=1:n { aki * bjk}static voidCommonOps_DDF6.multAddTransB(double alpha, DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c += α * a * bT
cij += α*∑k=1:n { aik * bjk}static voidCommonOps_DDF6.multAddTransB(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c += a * bT
cij += ∑k=1:n { aik * bjk}static voidCommonOps_DDF6.multTransA(double alpha, DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = α * aT * b
cij = α * ∑k=1:n { aki * bkj}static voidCommonOps_DDF6.multTransA(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = aT * b
cij = ∑k=1:n { aki * bkj}static voidCommonOps_DDF6.multTransAB(double alpha, DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = α*aT * bT
cij = α*∑k=1:n { aki * bjk}static voidCommonOps_DDF6.multTransAB(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = aT * bT
cij = ∑k=1:n { aki * bjk}static voidCommonOps_DDF6.multTransB(double alpha, DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = α * a * bT
cij = α*∑k=1:n { aik * bjk}static voidCommonOps_DDF6.multTransB(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = a * bT
cij = ∑k=1:n { aik * bjk}static voidNormOps_DDF6.normalizeF(DMatrix6x6 M) static doubleNormOps_DDF6.normF(DMatrix6x6 M) static voidCommonOps_DDF6.scale(double alpha, DMatrix6x6 a) Performs an in-place element by element scalar multiplication.
aij = α*aijstatic voidCommonOps_DDF6.scale(double alpha, DMatrix6x6 a, DMatrix6x6 b) Performs an element by element scalar multiplication.
bij = α*aijstatic voidCommonOps_DDF6.setIdentity(DMatrix6x6 a) Sets all the diagonal elements equal to one and everything else equal to zero.static voidCommonOps_DDF6.subtract(DMatrix6x6 a, DMatrix6x6 b, DMatrix6x6 c) Performs the following operation:
c = a - b
cij = aij - bijstatic voidCommonOps_DDF6.subtractEquals(DMatrix6x6 a, DMatrix6x6 b) Performs the following operation:
a = a - b
aij = aij - bijstatic doubleCommonOps_DDF6.trace(DMatrix6x6 a) This computes the trace of the matrix:
trace = ∑i=1:n { aii }static voidCommonOps_DDF6.transpose(DMatrix6x6 m) Performs an in-place transpose.static DMatrix6x6CommonOps_DDF6.transpose(DMatrix6x6 input, DMatrix6x6 output) Transposes matrix 'a' and stores the results in 'b':
bij = aji
where 'b' is the transpose of 'a'. -
Uses of DMatrix6x6 in org.ejml.ops
Methods in org.ejml.ops that return DMatrix6x6Modifier and TypeMethodDescriptionstatic DMatrix6x6DConvertMatrixStruct.convert(DMatrixRMaj input, @Nullable DMatrix6x6 output) ConvertsDMatrixRMajintoDMatrix6x6Methods in org.ejml.ops with parameters of type DMatrix6x6Modifier and TypeMethodDescriptionstatic DMatrixRMajDConvertMatrixStruct.convert(DMatrix6x6 input, @Nullable DMatrixRMaj output) ConvertsDMatrix6x6intoDMatrixRMaj.static DMatrix6x6DConvertMatrixStruct.convert(DMatrixRMaj input, @Nullable DMatrix6x6 output) ConvertsDMatrixRMajintoDMatrix6x6