blob: 85ebbe019b85453b9385cdf5321fdf791ab2bbea (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* matrix.h - matrix-algebra prototypes
*
* This file is Copyright (c)2010 by the GPSD project
* BSD terms apply: see the file COPYING in the distribution root for details.
*/
extern bool matrix_invert(double mat[4][4], double inverse[4][4]);
extern void matrix_symmetrize(double mat[4][4], double inverse[4][4]);
/* end */
|