• 大小: 1.56MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-29
  • 语言: C/C++
  • 标签: VC++  FFT  

资源简介

基于VC++的FFT频谱分析,利用VC++6.0实现FFT(快速傅里叶变换)的频谱分析,效果好。

资源截图

代码片段和文件信息

// FftTest.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “FftTest.h“
#include “FftTestDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CFftTestApp

BEGIN_MESSAGE_MAP(CFftTestApp CWinApp)
//{{AFX_MSG_MAP(CFftTestApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CFftTestApp construction

CFftTestApp::CFftTestApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CFftTestApp object

CFftTestApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CFftTestApp initialization

BOOL CFftTestApp::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

CFftTestDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    2754048  1999-10-30 12:52  FftTest\ago4501.dll

     文件      21068  2009-05-07 18:31  FftTest\FftTest.aps

     文件       1299  2009-05-07 18:31  FftTest\FftTest.clw

     文件       2077  2007-04-02 10:03  FftTest\FftTest.cpp

     文件       4305  2007-04-02 10:59  FftTest\FftTest.dsp

     文件        539  2007-04-02 10:03  FftTest\FftTest.dsw

     文件      32768  2007-05-02 02:41  FftTest\FftTest.exe

     文件       1335  2007-04-02 10:03  FftTest\FftTest.h

     文件     123904  2009-05-07 20:44  FftTest\FftTest.ncb

     文件      53760  2009-05-07 20:44  FftTest\FftTest.opt

     文件       1619  2009-05-07 18:31  FftTest\FftTest.plg

     文件       5502  2007-04-12 11:30  FftTest\FftTest.rc

     文件       8324  2007-04-12 13:57  FftTest\FftTestDlg.cpp

     文件       1683  2007-04-12 12:43  FftTest\FftTestDlg.h

     文件     106501  2006-05-01 00:54  FftTest\matlib.h

     文件       3597  2007-04-02 10:03  FftTest\ReadMe.txt

     文件        915  2007-04-12 11:30  FftTest\resource.h

     文件        209  2007-04-02 10:03  FftTest\StdAfx.cpp

     文件       1054  2007-04-02 10:03  FftTest\StdAfx.h

     文件    2247680  2000-01-11 13:34  FftTest\v4501v.dll

     文件    1580450  1999-10-30 12:57  FftTest\v4501v.lib

     文件       1078  2007-04-02 10:03  FftTest\res\FftTest.ico

     文件        399  2007-04-02 10:03  FftTest\res\FftTest.rc2

     文件      32768  2009-05-07 18:31  FftTest\Release\FftTest.exe

     文件      10195  2009-05-07 18:31  FftTest\Release\FftTest.obj

     文件       2708  2009-05-07 18:31  FftTest\Release\FftTest.res

     文件      37949  2009-05-07 18:31  FftTest\Release\FftTestDlg.obj

     文件        768  2009-05-07 18:31  FftTest\Release\StdAfx.obj

     目录          0  2010-05-21 15:40  FftTest\res

     目录          0  2010-05-21 15:40  FftTest\Release

............此处省略5个文件信息

评论

共有 条评论