2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2008, The GROMACS development team.
6 * Copyright (c) 2012,2013,2014,2015,2017, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
45 #include "gromacs/utility/fatalerror.h"
46 #include "gromacs/utility/smalloc.h"
48 #include "gmx_lapack.h"
50 double **alloc_matrix(int n
, int m
)
55 /* There's always time for more pointer arithmetic! */
56 /* This is necessary in order to be able to work with LAPACK */
59 for (i
= 1; (i
< n
); i
++)
66 void free_matrix(double **a
)
73 void matrix_multiply(FILE *fp
, int n
, int m
, double **x
, double **y
, double **z
)
80 fprintf(fp
, "Multiplying %d x %d matrix with a %d x %d matrix\n",
85 for (i
= 0; (i
< n
); i
++)
87 for (j
= 0; (j
< m
); j
++)
89 fprintf(fp
, " %7g", x
[i
][j
]);
95 for (i
= 0; (i
< m
); i
++)
97 for (j
= 0; (j
< m
); j
++)
100 for (k
= 0; (k
< n
); k
++)
102 z
[i
][j
] += x
[k
][i
]*y
[j
][k
];
108 static void dump_matrix(FILE *fp
, const char *title
, int n
, double **a
)
113 fprintf(fp
, "%s\n", title
);
114 for (i
= 0; (i
< n
); i
++)
117 for (j
= 0; (j
< n
); j
++)
119 fprintf(fp
, " %8.2f", a
[i
][j
]);
123 fprintf(fp
, "Prod a[i][i] = %g\n", d
);
126 int matrix_invert(FILE *fp
, int n
, double **a
)
128 int i
, j
, m
, lda
, *ipiv
, lwork
, info
;
129 double **test
= nullptr, **id
, *work
;
134 fprintf(fp
, "Inverting %d square matrix\n", n
);
135 test
= alloc_matrix(n
, n
);
136 for (i
= 0; (i
< n
); i
++)
138 for (j
= 0; (j
< n
); j
++)
140 test
[i
][j
] = a
[i
][j
];
143 dump_matrix(fp
, "before inversion", n
, a
);
151 F77_FUNC(dgetrf
, DGETRF
) (&n
, &m
, a
[0], &lda
, ipiv
, &info
);
155 dump_matrix(fp
, "after dgetrf", n
, a
);
162 F77_FUNC(dgetri
, DGETRI
) (&n
, a
[0], &lda
, ipiv
, work
, &lwork
, &info
);
166 dump_matrix(fp
, "after dgetri", n
, a
);
177 id
= alloc_matrix(n
, n
);
178 matrix_multiply(fp
, n
, n
, test
, a
, id
);
179 dump_matrix(fp
, "And here is the product of A and Ainv", n
, id
);
190 double multi_regression(FILE *fp
, int nrow
, double *y
, int ncol
,
191 double **xx
, double *a0
)
194 double ax
, chi2
, **a
, **at
, **ata
, *atx
;
196 a
= alloc_matrix(nrow
, ncol
);
197 at
= alloc_matrix(ncol
, nrow
);
198 ata
= alloc_matrix(ncol
, ncol
);
199 for (i
= 0; (i
< nrow
); i
++)
201 for (j
= 0; (j
< ncol
); j
++)
203 at
[j
][i
] = a
[i
][j
] = xx
[j
][i
];
206 matrix_multiply(fp
, nrow
, ncol
, a
, at
, ata
);
207 if ((row
= matrix_invert(fp
, ncol
, ata
)) != 0)
209 gmx_fatal(FARGS
, "Matrix inversion failed. Incorrect row = %d.\nThis probably indicates that you do not have sufficient data points, or that some parameters are linearly dependent.",
214 for (i
= 0; (i
< ncol
); i
++)
217 for (j
= 0; (j
< nrow
); j
++)
219 atx
[i
] += at
[i
][j
]*y
[j
];
222 for (i
= 0; (i
< ncol
); i
++)
225 for (j
= 0; (j
< ncol
); j
++)
227 a0
[i
] += ata
[i
][j
]*atx
[j
];
231 for (j
= 0; (j
< nrow
); j
++)
234 for (i
= 0; (i
< ncol
); i
++)
238 chi2
+= (y
[j
] - ax
) * (y
[j
] - ax
);