资源简介
该工程文件只包含FFT变换的演示。
该文件夹包含两个目录,分另为实现FFT变换的C以及C#代码实现。
经我整理之后,现在两个程序都采用相同的方法,并且采样数据为8192个点。
数据的来源于b.txt文件
所以变换后的频率图像是一样的,对于需要不同的代码的朋友,各取所需要。
代码中的注释不是很多,相关理论说明请参考我的BLOG:http://blog.csdn.net/yin138/
编译环境:
C版:可以使用VC6编译,也可以使用VC2010
C#版可以在2003以上编译环境中使用
@本工程代码仅作为我学习FFT变换使用,如果有需要你可以在任何范围内使用,不需要告知我。
yin138 2010-5-8
代码片段和文件信息
// FFT.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “FFT.h“
#include “MainFrm.h“
#include “FFTDoc.h“
#include “FFTView.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)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
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
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CFFTDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CFFTView));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About
class CAboutDlg
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 570969 2006-03-28 12:37 FFT_C\b.txt
文件 570969 2006-03-28 12:37 FFT_C\Debug\b.txt
文件 137728 2010-05-08 22:03 FFT_C\Debug\FFT.exe
文件 667 2010-05-08 21:23 FFT_C\Debug\FFT.exe.em
文件 381 2010-05-08 22:02 FFT_C\Debug\FFT.exe.intermediate.manifest
文件 27880 2010-01-22 09:34 FFT_C\FFT.APS
文件 2145 2010-01-22 09:34 FFT_C\FFT.clw
文件 4060 2002-01-01 04:08 FFT_C\FFT.cpp
文件 4809 2007-09-05 15:44 FFT_C\FFT.dsp
文件 529 2002-01-01 04:08 FFT_C\FFT.dsw
文件 1323 2002-01-01 04:08 FFT_C\FFT.h
文件 123904 2010-01-22 09:34 FFT_C\FFT.ncb
文件 52736 2010-01-22 09:34 FFT_C\FFT.opt
文件 240 2010-01-22 09:34 FFT_C\FFT.plg
文件 10915 2007-04-02 13:08 FFT_C\FFT.rc
文件 872 2010-05-08 21:07 FFT_C\FFT.sln
..A..H. 23552 2010-05-08 22:03 FFT_C\FFT.suo
文件 4340 2002-01-01 02:43 FFT_C\FFT.txt
文件 8139 2010-05-08 21:21 FFT_C\FFT.vcxproj
文件 2831 2010-05-08 21:21 FFT_C\FFT.vcxproj.filters
文件 143 2010-05-08 21:06 FFT_C\FFT.vcxproj.user
文件 1682 2002-01-01 04:08 FFT_C\FFTDoc.cpp
文件 1442 2002-01-01 04:08 FFT_C\FFTDoc.h
文件 7912 2010-05-08 22:00 FFT_C\FFTView.cpp
文件 2370 2010-05-08 21:26 FFT_C\FFTView.h
文件 4042 2002-01-02 07:57 FFT_C\FFT_2D_Kernel.H
文件 3926 2010-05-08 21:42 FFT_C\JPEG.cpp
文件 1106 2010-05-08 21:23 FFT_C\JPEG.h
文件 3556 2010-05-08 21:30 FFT_C\MainFrm.cpp
文件 1632 2010-05-08 22:02 FFT_C\MainFrm.h
............此处省略41个文件信息
- 上一篇:二叉树已知后序和中序遍历求前序遍历,C++代码
- 下一篇:克鲁斯卡尔最小生成树算法
相关资源
- 基于STM32的音频信号采样与FFT分析
- 高效FFT的C/C++代码实现包括基2的DIF和
- FFT(快速傅里叶变换)C++源程序
- FFT算法c语言代码
- 信号FFT变换及绘图
- 利用FFT计算频谱图
- FFT的C语言实现
- FFTW3.0快速傅立叶变换库
- 利用c语言实现FFT运算
- 基于VC++的FFT频谱分析
- 图像FFT卷积
- C语言实现2的指数次点的FFT
- DSP 77个C语言程序 包括FFTFIR IIR等的D
- fftw-3.3.7快速傅里叶变换计算库
- FFT和DFT完整算法C语言实现
- VB.NET写的FFT算法
- 自制FFT频谱分析软件
- 快速傅里叶变换的详细源代码C++
- 利用FFT计算电压有效值的C语言例程
- 嵌入式图像处理C语言源码
- FFT算法的c语言实现
- VC6 实现FFT 显示频谱
- FFT C语言实现
- MSP430单片机实现FFT(全国大学生电子
- C++版本的FFT傅立叶变换程序源代码
- FFT算法的C语言实现可以直接用在单片
- C语言实现傅里叶变换
- 基于C语言的快速傅里叶变换FFT算法含
- C语言实现FFT和IFFT
- 混合基fft变换
评论
共有 条评论