| Package | Description |
|---|---|
| org.ejml.alg.fixed | |
| org.ejml.data | |
| org.ejml.ops |
| Modifier and Type | Method and Description |
|---|---|
static FixedMatrix6x6_64F |
FixedOps6.transpose(FixedMatrix6x6_64F input,
FixedMatrix6x6_64F output)
Transposes matrix 'a' and stores the results in 'b':
bij = aji where 'b' is the transpose of 'a'. |
| Modifier and Type | Method and Description |
|---|---|
static void |
FixedOps6.add(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b,
FixedMatrix6x6_64F c)
Performs the following operation:
c = a + b cij = aij + bij |
static void |
FixedOps6.addEquals(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b)
Performs the following operation:
a = a + b aij = aij + bij |
static void |
FixedOps6.changeSign(FixedMatrix6x6_64F a)
Changes the sign of every element in the matrix.
aij = -aij |
static void |
FixedOps6.diag(FixedMatrix6x6_64F input,
FixedMatrix6_64F out)
Extracts all diagonal elements from 'input' and places them inside the 'out' vector.
|
static void |
FixedOps6.divide(double alpha,
FixedMatrix6x6_64F a)
Performs an in-place element by element scalar division.
aij = aij/α |
static void |
FixedOps6.divide(double alpha,
FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b)
Performs an element by element scalar division.
bij = *aij /α |
static void |
FixedOps6.elementDiv(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b)
Performs the an element by element division operation:
aij = aij / bij |
static void |
FixedOps6.elementDiv(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b,
FixedMatrix6x6_64F c)
Performs the an element by element division operation:
cij = aij / bij |
static double |
FixedOps6.elementMax(FixedMatrix6x6_64F a)
Returns the value of the element in the matrix that has the largest value.
Max{ aij } for all i and j |
static double |
FixedOps6.elementMaxAbs(FixedMatrix6x6_64F a)
Returns the absolute value of the element in the matrix that has the largest absolute value.
Max{ |aij| } for all i and j |
static double |
FixedOps6.elementMin(FixedMatrix6x6_64F a)
Returns the value of the element in the matrix that has the minimum value.
Min{ aij } for all i and j |
static double |
FixedOps6.elementMinAbs(FixedMatrix6x6_64F a)
Returns the absolute value of the element in the matrix that has the smallest absolute value.
Min{ |aij| } for all i and j |
static void |
FixedOps6.elementMult(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b)
Performs the an element by element multiplication operation:
aij = aij * bij |
static void |
FixedOps6.elementMult(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b,
FixedMatrix6x6_64F c)
Performs the an element by element multiplication operation:
cij = aij * bij |
static void |
FixedOps6.fill(FixedMatrix6x6_64F a,
double v)
Sets every element in the matrix to the specified value.
aij = value |
static void |
FixedOps6.mult(FixedMatrix6_64F a,
FixedMatrix6x6_64F b,
FixedMatrix6_64F c)
Performs vector to matrix multiplication:
c = a * b cj = ∑k=1:n { bk * akj } |
static void |
FixedOps6.mult(FixedMatrix6x6_64F a,
FixedMatrix6_64F b,
FixedMatrix6_64F c)
Performs matrix to vector multiplication:
c = a * b ci = ∑k=1:n { aik * bk} |
static void |
FixedOps6.mult(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b,
FixedMatrix6x6_64F c)
Performs the following operation:
c = a * b cij = ∑k=1:n { aik * bkj} |
static void |
FixedOps6.multTransA(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b,
FixedMatrix6x6_64F c)
Performs the following operation:
c = aT * b cij = ∑k=1:n { aki * bkj} |
static void |
FixedOps6.multTransAB(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b,
FixedMatrix6x6_64F c)
Performs the following operation:
c = aT * bT cij = ∑k=1:n { aki * bjk} |
static void |
FixedOps6.multTransB(FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b,
FixedMatrix6x6_64F c)
Performs the following operation:
c = a * bT cij = ∑k=1:n { aik * bjk} |
static void |
FixedOps6.scale(double alpha,
FixedMatrix6x6_64F a)
Performs an in-place element by element scalar multiplication.
aij = α*aij |
static void |
FixedOps6.scale(double alpha,
FixedMatrix6x6_64F a,
FixedMatrix6x6_64F b)
Performs an element by element scalar multiplication.
bij = α*aij |
static void |
FixedOps6.setIdentity(FixedMatrix6x6_64F a)
Sets all the diagonal elements equal to one and everything else equal to zero.
|
static double |
FixedOps6.trace(FixedMatrix6x6_64F a)
This computes the trace of the matrix:
trace = ∑i=1:n { aii } |
static void |
FixedOps6.transpose(FixedMatrix6x6_64F m)
Performs an in-place transpose.
|
static FixedMatrix6x6_64F |
FixedOps6.transpose(FixedMatrix6x6_64F input,
FixedMatrix6x6_64F output)
Transposes matrix 'a' and stores the results in 'b':
bij = aji where 'b' is the transpose of 'a'. |
| Constructor and Description |
|---|
FixedMatrix6x6_64F(FixedMatrix6x6_64F o) |
| Modifier and Type | Method and Description |
|---|---|
static FixedMatrix6x6_64F |
ConvertMatrixType.convert(DenseMatrix64F input,
FixedMatrix6x6_64F output)
Converts
DenseMatrix64F into FixedMatrix6x6_64F |
| Modifier and Type | Method and Description |
|---|---|
static FixedMatrix6x6_64F |
ConvertMatrixType.convert(DenseMatrix64F input,
FixedMatrix6x6_64F output)
Converts
DenseMatrix64F into FixedMatrix6x6_64F |
static DenseMatrix64F |
ConvertMatrixType.convert(FixedMatrix6x6_64F input,
DenseMatrix64F output)
Converts
FixedMatrix6x6_64F into DenseMatrix64F. |
Copyright © 2013. All Rights Reserved.