matrix.h 327 B

12345678910111213
  1. /*
  2. * matrix.h - matrix-algebra prototypes
  3. *
  4. * This file is Copyright 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 */
  10. // vim: set expandtab shiftwidth=4