2015-03-23 16:03:14 -05:00
|
|
|
/*
|
2015-02-26 09:02:31 -06:00
|
|
|
PURPOSE: (Matrix initialization)
|
|
|
|
|
|
|
|
ASSUMPTIONS AND LIMITATIONS: ((3x3 Matrix implementation))
|
|
|
|
|
|
|
|
PROGRAMMERS: (((Les Quiocho) (NASA/Johnson Space Center) (Jan 1990) (v1.0) (Init Release))) */
|
|
|
|
|
2015-06-01 10:28:29 -05:00
|
|
|
#include "trick/trick_math.h"
|
2015-02-26 09:02:31 -06:00
|
|
|
|
|
|
|
void dm_init(double mat[3][3])
|
|
|
|
{ /* Inout: Initialized matrix */
|
|
|
|
mat[0][0] = 0.0;
|
|
|
|
mat[0][1] = 0.0;
|
|
|
|
mat[0][2] = 0.0;
|
|
|
|
mat[1][0] = 0.0;
|
|
|
|
mat[1][1] = 0.0;
|
|
|
|
mat[1][2] = 0.0;
|
|
|
|
mat[2][0] = 0.0;
|
|
|
|
mat[2][1] = 0.0;
|
|
|
|
mat[2][2] = 0.0;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|