1 /* matutil.h
2 
3    Written by Don Robert Maszle
4    18 September 1992
5 
6    Copyright (c) 1992-2017 Free Software Foundation, Inc.
7 
8    This file is part of GNU MCSim.
9 
10    GNU MCSim is free software; you can redistribute it and/or
11    modify it under the terms of the GNU General Public License
12    as published by the Free Software Foundation; either version 3
13    of the License, or (at your option) any later version.
14 
15    GNU MCSim is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19 
20    You should have received a copy of the GNU General Public License
21    along with GNU MCSim; if not, see <http://www.gnu.org/licenses/>
22 */
23 
24 
25 /* Prototypes */
26 
27 /* Write an array to a file */
28 void WriteArray (FILE *pfile, long cElems, double *rg);
29 
30 /* Write the array, exp() transformed, to a file, i.e. exp(a[.])*/
31 void WriteArrayExp (FILE *pfile, long cElems, double *rg);
32 
33 /* For debugging */
34 void _walog (long cElems, double *rg);
35 
36 /* End */
37 
38