Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

22 lines
509 B
C

/*
PURPOSE: (Matrix print)
ASSUMPTIONS AND LIMITATIONS: ((3x3 Matrix implementation))
PROGRAMMERS: (((Les Quiocho) (NASA/JSC) (Jan 1990) (v1.0) (Init Release))) */
#include <stdio.h>
#include "../include/trick_math.h"
void dm_print(double mat[3][3])
{ /* In: matrix to be printed */
int i, j;
for (i = 0; i < 3; i++) {
for (j = 0; j < 3; j++) {
fprintf(stderr, " %f ", mat[i][j]);
}
fprintf(stderr, "\n");
}
}