Final Version of the ACS Controller #367
@ -279,7 +279,7 @@ class MathOperations {
|
|||||||
}
|
}
|
||||||
static void inverseMatrixDimThree(const T1 *matrix, T1 *output) {
|
static void inverseMatrixDimThree(const T1 *matrix, T1 *output) {
|
||||||
int i, j;
|
int i, j;
|
||||||
double determinant;
|
double determinant = 0;
|
||||||
double mat[3][3] = {{matrix[0], matrix[1], matrix[2]},
|
double mat[3][3] = {{matrix[0], matrix[1], matrix[2]},
|
||||||
{matrix[3], matrix[4], matrix[5]},
|
{matrix[3], matrix[4], matrix[5]},
|
||||||
{matrix[6], matrix[7], matrix[8]}};
|
{matrix[6], matrix[7], matrix[8]}};
|
||||||
|
Loading…
Reference in New Issue
Block a user