资源简介
VC++ 6.0 实现FFT, 在对话框中显示频谱
代码片段和文件信息
// FFTinDLG.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “FFTinDLG.h“
#include “FFTinDLGDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFFTinDLGApp
BEGIN_MESSAGE_MAP(CFFTinDLGApp CWinApp)
//{{AFX_MSG_MAP(CFFTinDLGApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CFFTinDLGApp construction
CFFTinDLGApp::CFFTinDLGApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CFFTinDLGApp object
CFFTinDLGApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CFFTinDLGApp initialization
BOOL CFFTinDLGApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CFFTinDLGDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 22212 2011-10-22 13:33 FFTinDLG\FFTinDLG.aps
文件 1896 2011-10-22 13:38 FFTinDLG\FFTinDLG.clw
文件 2091 2006-03-18 09:18 FFTinDLG\FFTinDLG.cpp
文件 4196 2011-10-22 13:38 FFTinDLG\FFTinDLG.dsp
文件 541 2006-03-18 09:18 FFTinDLG\FFTinDLG.dsw
文件 1346 2006-03-18 09:18 FFTinDLG\FFTinDLG.h
文件 74752 2011-10-22 13:38 FFTinDLG\FFTinDLG.ncb
文件 48640 2011-10-22 13:38 FFTinDLG\FFTinDLG.opt
文件 4206 2011-10-22 13:38 FFTinDLG\FFTinDLG.plg
文件 6368 2006-03-18 16:42 FFTinDLG\FFTinDLG.rc
文件 13203 2006-03-18 16:40 FFTinDLG\FFTinDLGDlg.cpp
文件 1894 2006-03-18 11:17 FFTinDLG\FFTinDLGDlg.h
文件 3615 2006-03-18 09:18 FFTinDLG\ReadMe.txt
文件 1078 2006-03-18 09:18 FFTinDLG\res\FFTinDLG.ico
文件 400 2006-03-18 09:18 FFTinDLG\res\FFTinDLG.rc2
文件 1284 2006-03-18 11:18 FFTinDLG\Resource.h
文件 210 2006-03-18 09:18 FFTinDLG\StdAfx.cpp
文件 1054 2006-03-18 09:18 FFTinDLG\StdAfx.h
目录 0 2011-10-22 13:33 FFTinDLG\res
目录 0 2011-10-22 13:41 FFTinDLG
----------- --------- ---------- ----- ----
188986 20
- 上一篇:状态空间法解决汉诺塔问题
- 下一篇:西北工业大学C++语言大作业实验报告
相关资源
- FFT C语言实现
- MSP430单片机实现FFT(全国大学生电子
- C++版本的FFT傅立叶变换程序源代码
- FFT算法的C语言实现可以直接用在单片
- C语言实现傅里叶变换
- 基于C语言的快速傅里叶变换FFT算法含
- C语言实现FFT和IFFT
- 混合基fft变换
- FFT的C语言实现代码
- ifft的c语言编程
- 16点基4dit-fft程序c++
- 用C语言实现FFT算法的编写,可与DFT时
- 快速傅里叶算法FFTc语言实现
- FFT 和IFFT基二的C语言和MATLAB实现
- 超级效率的FFT的代码(C语言)
- DFT FFT 的C语言实现方法及程序
- NUFFT的matlab算法
- 基于OpenGL的音乐可视化、频谱图
- 用fft求互相关,速度更快,c语言实现
- FFT/IFFT变换C语言代码,包含浮点型C工
- 基于CCS和ICETEK5509实验箱FFT算法的C语言
- dsp图像处理二维傅里叶变换代码实现
- 图像处理 FFT快速傅里叶变换 C代码
- 最新快速傅里叶计算,C语言的FFT程序
- 快速傅立叶变换(FFT) C,C#源码
- C语言实现FFT(快速傅里叶变换)
- Visual C++实现的FFT变换
- c++编写的傅里叶变换FFT程序
- 实序列FFT算法的C语言实现
- 实序列快速傅里叶变换C语言源代码
评论
共有 条评论