Algthms.h
上传用户:weigute
上传日期:2007-03-02
资源大小:1287k
文件大小:1k
源码类别:

数学计算

开发平台:

Visual C++

  1. //////////////////////////////////////////////////////////////////////
  2. // Algthms.h
  3. //
  4. // 算法库通用头文件。请在需调用的工作文件中包含此文件。
  5. //
  6. // 周长发编制, 2002/8
  7. //////////////////////////////////////////////////////////////////////
  8. #ifndef ____ALGORITHMS_LIB_HEADER_____
  9. #define ____ALGORITHMS_LIB_HEADER_____
  10. #include "Complex.h" // 复数运算
  11. #include "Matrix.h" // 矩阵运算
  12. #include "LEquations.h" // 线性方程组运算
  13. #include "NLequation.h" // 非线性方程和方程组运算
  14. #include "Interpolate.h" // 插值运算
  15. #include "Integral.h" // 数值积分运算
  16. #endif // #ifndef ____ALGORITHMS_LIB_HEADER_____