Author: varioustoxins
Date: Fri Apr  7 09:39:42 2006
New Revision: 2456
URL: http://svn.gna.org/viewcvs/relax?rev=2456&view=rev
Log:
fix for missing files from maths_fns in r2455
edward at nmr-relax.com
https://gna.org/bugs/index.php?func=detailitem&item_id=5602
Added:
    1.2/maths_fns/c_chi2.h
    1.2/maths_fns/exponential.h
Added: 1.2/maths_fns/c_chi2.h
URL: 
http://svn.gna.org/viewcvs/relax/1.2/maths_fns/c_chi2.h?rev=2456&view=auto
==============================================================================
--- 1.2/maths_fns/c_chi2.h (added)
+++ 1.2/maths_fns/c_chi2.h Fri Apr  7 09:39:42 2006
@@ -1,0 +1,26 @@
+/*
+ * Copyright (C) 2006 Edward d'Auvergne
+ *
+ * This file is part of the program relax.
+ *
+ * relax is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * relax is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with relax; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+#ifndef RELAX_C_CHI2 
+#define RELAX_C_CHI2
+
+double chi2(double *values, double *sd, double *back_calc, int num_times);
+
+#endif
Added: 1.2/maths_fns/exponential.h
URL: 
http://svn.gna.org/viewcvs/relax/1.2/maths_fns/exponential.h?rev=2456&view=auto
==============================================================================
--- 1.2/maths_fns/exponential.h (added)
+++ 1.2/maths_fns/exponential.h Fri Apr  7 09:39:42 2006
@@ -1,0 +1,25 @@
+/*
+ * Copyright (C) 2006 Edward d'Auvergne
+ *
+ * This file is part of the program relax.
+ *
+ * relax is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * relax is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with relax; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+#ifndef RELAX_EXPONENTIAL 
+#define RELAX_EXPONENTIAL
+
+void exponential(double *params, double *relax_times, double *back_calc, int 
num_times);
+
+#endif