资源简介
FFT
外国人编写的FFT代码,运算效率超高,8192点浮点FFT不到1ms,运行环境为VC6.0或VS2008。一直在项目中使用该代码

代码片段和文件信息
// fft.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “fft.h“
#include “fftDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFftApp
BEGIN_MESSAGE_MAP(CFftApp CWinApp)
//{{AFX_MSG_MAP(CFftApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CFftApp construction
CFftApp::CFftApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CFftApp object
CFftApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CFftApp initialization
BOOL CFftApp::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
CFftDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 163905 2010-10-16 15:31 fft\Debug\fft.exe
文件 225780 2010-10-16 15:31 fft\Debug\fft.ilk
文件 22701 2010-10-16 15:31 fft\Debug\fft.obj
文件 157572 2010-10-16 15:31 fft\Debug\fft.pch
文件 451584 2010-10-16 15:31 fft\Debug\fft.pdb
文件 2420 2010-10-16 15:20 fft\Debug\fft.res
文件 33732 2010-10-16 15:31 fft\Debug\fftDlg.obj
文件 91353 2010-10-16 15:31 fft\Debug\fftsg_h.obj
文件 105724 2010-10-16 15:27 fft\Debug\StdAfx.obj
文件 214016 2010-10-16 15:31 fft\Debug\vc60.idb
文件 364544 2010-10-16 15:31 fft\Debug\vc60.pdb
文件 35360 2010-10-16 15:20 fft\fft.aps
文件 1001 2010-10-16 15:31 fft\fft.clw
文件 2021 2010-10-16 15:19 fft\fft.cpp
文件 4184 2010-10-16 15:32 fft\fft.dsp
文件 531 2010-10-16 15:19 fft\fft.dsw
文件 1291 2010-10-16 15:19 fft\fft.h
文件 58368 2010-10-16 15:32 fft\fft.ncb
文件 53760 2010-10-16 15:32 fft\fft.opt
文件 240 2010-10-16 15:31 fft\fft.plg
文件 5146 2010-10-16 15:20 fft\fft.rc
文件 4511 2010-10-16 15:31 fft\fftDlg.cpp
文件 1332 2010-10-16 15:30 fft\fftDlg.h
文件 89749 2006-04-05 07:40 fft\fftsg_h.c
文件 3525 2010-10-16 15:19 fft\ReadMe.txt
文件 1078 2010-10-16 15:19 fft\res\fft.ico
文件 395 2010-10-16 15:19 fft\res\fft.rc2
文件 528 2010-10-16 15:19 fft\Resource.h
文件 205 2010-10-16 15:19 fft\StdAfx.cpp
文件 1054 2010-10-16 15:19 fft\StdAfx.h
............此处省略6个文件信息
- 上一篇:灰度预测模型C语言源代码
- 下一篇:FFT 和IFFT基二的C语言和MATLAB实现
相关资源
- 国际象棋的qt源代码
- C++中头文件与源文件的作用详解
- C++多线程网络编程Socket
- VC++ 多线程文件读写操作
- CCS FFT c语言算法
- 利用C++哈希表的方法实现电话号码查
- 移木块游戏,可以自编自玩,vc6.0编写
- C++纯文字DOS超小RPG游戏
- VC++MFC小游戏实例教程(实例)+MFC类库
- 连铸温度场计算程序(C++)
- 6自由度机器人运动学正反解C++程序
- Em算法(使用C++编写)
- libstdc++-4.4.7-4.el6.i686.rpm
- VC++实现CMD命令执行与获得返回信息
- 白话C++(全)
- C++标准库第1、2
- 大数类c++大数类
- C++语言编写串口调试助手
- c++素数筛选法
- C++ mqtt 用法
- 商品库存管理系统 C++ MFC
- c++ 多功能计算器
- C++17 In Detail
- 嵌入式QtC++编程课件
- FFT电流检测 stm32f4
- 颜色识别形状识别STM103嵌入式代码
- 基于STM32的音频信号采样与FFT分析
- c++ 邮件多附件群发
- c++ 透明代理(hookproxy)
- mfc 调用redis
评论
共有 条评论