Main Page   Class Hierarchy   Compound List   File List   Compound Members  

statistic_.cpp

00001 /*=============================================================================
00002         File: statistics.cpp
00003      Purpose:
00004     Revision: $Id: statistic_.cpp,v 1.2 2002/05/13 21:07:45 philosophil Exp $
00005   Created by: Philippe Lavoie          (18 February 1999)
00006  Modified by: 
00007 
00008  Copyright notice:
00009           Copyright (C) 1996-1997 Philippe Lavoie
00010  
00011           This library is free software; you can redistribute it and/or
00012           modify it under the terms of the GNU Library General Public
00013           License as published by the Free Software Foundation; either
00014           version 2 of the License, or (at your option) any later version.
00015  
00016           This library is distributed in the hope that it will be useful,
00017           but WITHOUT ANY WARRANTY; without even the implied warranty of
00018           MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00019           Library General Public License for more details.
00020  
00021           You should have received a copy of the GNU Library General Public
00022           License along with this library; if not, write to the Free
00023           Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
00024 =============================================================================*/
00025 
00026 #include "statistic.cpp"
00027 
00028 namespace PLib{
00029 
00030   int MaximumIterations ;
00031   
00032 #ifdef NO_IMPLICIT_TEMPLATES
00033 
00034   template  float lnOfGamma(float xx) ;
00035   template  float factorial<float>(int n) ;
00036   template  float lnOfFactorial<float>(int n) ;
00037   template  float binomialCoefficient<float>(int n, int k) ;
00038   template  float beta(float z, float w) ;
00039   template  float gammaP(float a, float x);
00040   template  float gammaQ(float a, float x);
00041   template  float gammaSerie(float a, float x, float& gln) ;
00042   template  float gammaSerieCF(float a, float x, float& gln) ;
00043   template  float errorFcn(float x);
00044   template  float errorFcnC(float x);
00045   template  float errorFcnChebyshevC(float x);
00046   template  void kendallTau(const BasicArray<float>& data1, const BasicArray<float>& data2, float &tau, float &z, float& prob);
00047 
00048   template  double lnOfGamma(double xx) ;
00049   template  double factorial<double>(int n) ;
00050   template  double lnOfFactorial<double>(int n) ;
00051   template  double binomialCoefficient<double>(int n, int k) ;
00052   template  double beta(double z, double w) ;
00053   template  double gammaP(double a, double x);
00054   template  double gammaQ(double a, double x);
00055   template  double gammaSerie(double a, double x, double& gln) ;
00056   template  double gammaSerieCF(double a, double x, double& gln) ;
00057   template  double errorFcn(double x);
00058   template  double errorFcnC(double x);
00059   template  double errorFcnChebyshevC(double x);
00060   template  void kendallTau(const BasicArray<double>& data1, const BasicArray<double>& data2, double &tau, double &z, double& prob);
00061 
00062 #endif
00063 
00064 }

Generated on Tue Jun 24 13:26:58 2003 for NURBS++ by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002