stdafx.h
上传用户:avbj512
上传日期:2013-09-18
资源大小:6239k
文件大小:2k
源码类别:

DSP编程

开发平台:

Visual C++

  1. // stdafx.h : include file for standard system include files,
  2. //  or project specific include files that are used frequently, but
  3. //      are changed infrequently
  4. //
  5. #if !defined(AFX_STDAFX_H__FDB0F7ED_EBFC_44B9_AE26_C9555627B039__INCLUDED_)
  6. #define AFX_STDAFX_H__FDB0F7ED_EBFC_44B9_AE26_C9555627B039__INCLUDED_
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
  11. #include <afx.h>
  12. #include <afxwin.h>         // MFC core and standard components
  13. #include <afxext.h>         // MFC extensions
  14. #include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
  15. #ifndef _AFX_NO_AFXCMN_SUPPORT
  16. #include <afxcmn.h> // MFC support for Windows Common Controls
  17. #endif // _AFX_NO_AFXCMN_SUPPORT
  18. #include <iostream>
  19. // TODO: reference additional headers your program requires here
  20. #include "DXDXA_MFC.h"
  21. // 定义一些数据类型的基本常量
  22. #define MAX_DOUBLE_VALUE (1.7E+308)
  23. #define MIN_DOUBLE_VALUE (1.7E-308)
  24. #define EPSILON_DOUBLE_VALUE (1.0E-5)
  25. #define LOG_SCALE (8)
  26. #define MAX_LONG_VALUE (0x7FFFFFFFL)
  27. #define MIN_LONG_VALUE (0x80000000L)
  28. #define MAX_SHORT_VALUE (0x7FFF)
  29. #define MIN_SHORT_VALUE (0x8000)
  30. #define WORD_ITEM_NUM (59)
  31. // 定义一些DEBUG相关的宏
  32. #define DEBUG_PRINTF printf
  33. #define ELAPSED_TIME_OUTPUT() debug_show_time_elapsed()
  34. #define PRO_LOG debug_program_log
  35. #define RESULT_LOG debug_result_log
  36. // 定义一个词条的数据结构
  37. typedef struct tag_WORD_SAMPLE {
  38. int n_Feature_Sequence_Len;
  39. DYNA_2DIM_DOUBLE_ARRAY d2dda_Feature_Sequence;
  40. int n_Feature_Dim;
  41. int * pn_VQed_Feature_Sequence;
  42. DYNA_2DIM_DOUBLE_ARRAY d2dda_Gamma;
  43. } WORD_SAMPLE;
  44. // 定义一个DHMM模型的数据结构
  45. typedef struct tag_DHMM_MODEL {
  46. int n_State_Num;
  47. int n_Code_Book_Size;
  48. double * pdPi;
  49. DYNA_2DIM_DOUBLE_ARRAY d2dda_A;
  50. DYNA_2DIM_DOUBLE_ARRAY d2dda_B;
  51. } DHMM_MODEL;
  52. // 函数功能:显示程序到目前执行的时间
  53. void debug_show_time_elapsed(void);
  54. // 函数功能:同时向程序运行LOG和屏幕显示信息
  55. int debug_program_log(const char * fmt, ... );
  56. // 函数功能:向程序Result文件写入信息
  57. int debug_result_log(const char * fmt, ... );
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_STDAFX_H__FDB0F7ED_EBFC_44B9_AE26_C9555627B039__INCLUDED_)