summaryrefslogtreecommitdiff
path: root/matrix.h
blob: 24717874b72c9d25e3c567cd12f00c82f242736d (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
 * SPDX-License-Identifier: BSD-2-clause
 */

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 */