2015-03-23 21:03:14 +00:00
|
|
|
/*
|
2015-02-26 15:02:31 +00:00
|
|
|
PURPOSE: (Matrix subtraction)
|
|
|
|
|
|
|
|
ASSUMPTIONS AND LIMITATIONS: ((3x3 Matrix implementation))
|
|
|
|
|
|
|
|
PROGRAMMERS: (((Les Quiocho) (NASA/Johnson Space Center) (Jan 1990) (v1.0) (Init Release))) */
|
|
|
|
|
2015-06-01 15:28:29 +00:00
|
|
|
#include "trick/trick_math.h"
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
void dm_sub(double diff[3][3], /* Out: Difference of the two matrices */
|
|
|
|
double mat1[3][3], /* In: Matrix 1 */
|
|
|
|
double mat2[3][3])
|
|
|
|
{ /* In: Matrix 2 */
|
|
|
|
diff[0][0] = mat1[0][0] - mat2[0][0];
|
|
|
|
diff[0][1] = mat1[0][1] - mat2[0][1];
|
|
|
|
diff[0][2] = mat1[0][2] - mat2[0][2];
|
|
|
|
|
|
|
|
diff[1][0] = mat1[1][0] - mat2[1][0];
|
|
|
|
diff[1][1] = mat1[1][1] - mat2[1][1];
|
|
|
|
diff[1][2] = mat1[1][2] - mat2[1][2];
|
|
|
|
|
|
|
|
diff[2][0] = mat1[2][0] - mat2[2][0];
|
|
|
|
diff[2][1] = mat1[2][1] - mat2[2][1];
|
|
|
|
diff[2][2] = mat1[2][2] - mat2[2][2];
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|