File: matrix.h

package info (click to toggle)
gpsd 3.27-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,056 kB
  • sloc: ansic: 74,438; python: 16,521; sh: 890; cpp: 848; php: 225; makefile: 197; perl: 111; javascript: 26; xml: 11
file content (11 lines) | stat: -rw-r--r-- 312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
/*
 * matrix.h - matrix-algebra prototypes
 *
 * This file is Copyright 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]);

// vim: set expandtab shiftwidth=4