gauss_theory.h
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:0k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = gauss_theory.h
  3. //
  4. #ifndef _GAUSS_THEORY_H_ 
  5. #define _GAUSS_THEORY_H_
  6. void GaussPdf( double mean,
  7.                double sigma,
  8.                int num_pts,
  9.                double pts_per_sigma,
  10.                char *out_filename);
  11. void GaussCdf( double mean,
  12.                double sigma,
  13.                int num_pts,
  14.                double pts_per_sigma,
  15.                char *out_filename);
  16. #endif