Mac binaries
[jabaws.git] / website / archive / binaries / mac / src / disembl / Tisean_3.0.1 / source_c / routines / invert_matrix.c
1 /*
2  *   This file is part of TISEAN
3  *
4  *   Copyright (c) 1998-2007 Rainer Hegger, Holger Kantz, Thomas Schreiber
5  *
6  *   TISEAN is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *
11  *   TISEAN is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with TISEAN; if not, write to the Free Software
18  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  */
20 /* Author: Rainer Hegger Last modified: Sep 5, 2004*/
21 /* Changes: 
22  * Sep 5, 2004: added the extern check_alloc line
23  */
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <math.h>
27
28 extern void check_alloc(void*);
29
30 double **invert_matrix(double **mat,unsigned int size)
31 {
32   int i,j,k;
33   double **hmat,**imat,*vec;
34   extern void solvele(double**,double*,unsigned int);
35
36   check_alloc(hmat=(double**)malloc(sizeof(double*)*size));
37   for (i=0;i<size;i++) {
38     check_alloc(hmat[i]=(double*)malloc(sizeof(double)*size));
39   }
40
41   check_alloc(imat=(double**)malloc(sizeof(double*)*size));
42   for (i=0;i<size;i++) {
43     check_alloc(imat[i]=(double*)malloc(sizeof(double)*size));
44   }
45
46   check_alloc(vec=(double*)malloc(sizeof(double)*size));
47   
48   for (i=0;i<size;i++) {
49     for (j=0;j<size;j++) {
50       vec[j]=(i==j)?1.0:0.0;
51       for (k=0;k<size;k++)
52         hmat[j][k]=mat[j][k];
53     }
54     solvele(hmat,vec,size);
55     for (j=0;j<size;j++)
56       imat[j][i]=vec[j];
57   }
58   
59   free(vec);
60   for (i=0;i<size;i++)
61     free(hmat[i]);
62   free(hmat);
63
64   return imat;
65 }