matrix.h 295 B

123456789101112
  1. /*
  2. * matrix.h - matrix-algebra prototypes
  3. *
  4. * This file is Copyright (c)2010 by the GPSD project
  5. * SPDX-License-Identifier: BSD-2-clause
  6. */
  7. extern bool matrix_invert(double mat[4][4], double inverse[4][4]);
  8. extern void matrix_symmetrize(double mat[4][4], double inverse[4][4]);
  9. /* end */