资源简介

对于时慢变对象需要跟踪对象的特性。如果对象能够用线性系统描述,则需要跟踪其状态方程式的系数。这个场合,递推最小二乘法比较适用。本小程序提供了实现递推最小二乘法的代码,供需要的同仁参考。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “AplusbTb.h“
#include “AplusbTbDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CAplusbTbApp

BEGIN_MESSAGE_MAP(CAplusbTbApp CWinApp)
//{{AFX_MSG_MAP(CAplusbTbApp)
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAplusbTbApp construction

CAplusbTbApp::CAplusbTbApp()
{
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CAplusbTbApp object

CAplusbTbApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CAplusbTbApp initialization

BOOL CAplusbTbApp::InitInstance()
{
// Standard initialization

CAplusbTbDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
}
else if (nResponse == IDCANCEL)
{
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

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

     文件        876  2011-08-05 15:51  AplusbTb\AplusbTb.clw

     文件       1283  2011-08-05 07:04  AplusbTb\AplusbTb.cpp

     文件       4028  2011-08-05 07:04  AplusbTb\AplusbTb.dsp

     文件        539  2011-08-05 07:04  AplusbTb\AplusbTb.dsw

     文件       1204  2011-08-05 07:04  AplusbTb\AplusbTb.h

     文件       2151  2011-08-05 15:43  AplusbTb\AplusbTb.plg

     文件       4849  2011-08-05 15:43  AplusbTb\AplusbTb.rc

     文件       5886  2011-08-05 15:43  AplusbTb\AplusbTbDlg.cpp

     文件       1388  2011-08-05 15:41  AplusbTb\AplusbTbDlg.h

     文件       6000  2011-08-05 15:51  AplusbTb\data.dat

     文件       1078  2011-08-05 07:04  AplusbTb\res\AplusbTb.ico

     文件        400  2011-08-05 07:04  AplusbTb\res\AplusbTb.rc2

     文件        732  2011-08-05 15:43  AplusbTb\resource.h

     文件        210  2011-08-05 07:04  AplusbTb\StdAfx.cpp

     文件        999  2011-08-05 07:04  AplusbTb\StdAfx.h

     文件      24064  2011-08-05 15:50  AplusbTb\递推最小二乘法.doc

     目录          0  2011-08-05 07:04  AplusbTb\res

     目录          0  2011-08-05 15:52  AplusbTb

----------- ---------  ---------- -----  ----

                55687                    18


评论

共有 条评论