Ian Jauslin
summaryrefslogtreecommitdiff
blob: 613be87d33d5e5e5ad94b363666000c76a0d487e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
  Compute the determinant of a number matrix
*/

#ifndef DETERMINANT_H
#define DETERMINANT_H

#include "types.h"

// determinant of a matrix
int determinant_inplace(Number_Matrix M, Number* out);

// LU decomposition
int LU_dcmp_inplace(Number_Matrix M, int* sign_correction);


#endif