-
计算重力图
Calculate Gravitational map
- 2022-03-12 13:23:43下载
- 积分:1
-
Windows应用程序,窗口,事件驱动,句柄和Windows消息,Windows应用常用消息...
Windows应用程序,窗口,事件驱动,句柄和Windows消息,Windows应用常用消息-Windows application, window, event-driven, handle and Windows news, Windows applications commonly used news
- 2022-01-23 11:10:48下载
- 积分:1
-
能够具有三维效果的3D旋转体,由C++编写。此程序能够正确的运行...
能够具有三维效果的3D旋转体,由C++编写。此程序能够正确的运行-to have a three-dimensional effect of 3D solid, prepared by C. This procedure can correct operation
- 2022-03-22 09:18:28下载
- 积分:1
-
* 本算法用最小二乘法依据指定的M个基函数及N个已知数据进行曲线拟和
* 输入: m...
* 本算法用最小二乘法依据指定的M个基函数及N个已知数据进行曲线拟和
* 输入: m--已知数据点的个数M
* f--M维基函数向量
* n--已知数据点的个数N-1
* x--已知数据点第一坐标的N维列向量
* y--已知数据点第二坐标的N维列向量
* a--无用
* 输出: 函数返回值为曲线拟和的均方误差
* a为用基函数进行曲线拟和的系数,
* 即a[0]f[0]+a[1]f[1]+...+a[M]f[M].
-* The algorithm using the least-squares method based on the designated function of M and N-known curve data to be imported and* : m-- the known number of data points M* f-- From M* n vector function-- known data points the number N-1* x-- known data points of the first N-dimensional coordinates listed Vector* y-- known data points of the second N-dimensional coordinates shown in a vector*-- useless* Output : function return value to the curve-fitting and the mean square error* for the use of a base function and the curve fitting coefficients,* is a f [0] [0] a [1] f [a] ... a [M] f [M].
- 2022-03-31 18:42:38下载
- 积分:1
-
Database Application : 查询数据库的最完美技巧 中文版
del6opr.chm: Delphi 6 的帮助文件 中文版
delph...
Database Application : 查询数据库的最完美技巧 中文版
del6opr.chm: Delphi 6 的帮助文件 中文版
delphi6_function.chm Delphi 6 函数介绍 中文版
Essential_Pascal.chm 最完整的Object Pascal语言介绍 中文版
FastReportHelp.chm 拥有魔力的FastReport的帮助文件 中文版
IBlt0101B.Chm InterBase的经典问答资料文件 中文版
MySQLBook.chm MySQL的最详细帮助文件 中文版
ProgrammingWindows_tw.chm 地球上最有名、最受推崇、最多人使用并且从中受益的程式设计用书 当然也是中文版-Database Application : 查询数据库的最完美技巧 中文版
del6opr.chm: Delphi 6 的帮助文件 中文版
delphi6_function.chm Delphi 6 函数介绍 中文版
Essential_Pascal.chm 最完整的Object Pascal语言介绍 中文版
FastReportHelp.chm 拥有魔力的FastReport的帮助文件 中文版
IBlt0101B.Chm InterBase的经典问答资料文件 中文版
MySQLBook.chm MySQL的最详细帮助文件 中文版
ProgrammingWindows_tw.chm 地球上最有名、最受推崇、最多人使用并且从中受益的程式设计用书 当然也是中文版
- 2022-02-15 22:32:55下载
- 积分:1
-
可以把二进制数据(比如您从ASP的Request.BinaryRead方法得到的数据)转换为字符串。...
可以把二进制数据(比如您从ASP的Request.BinaryRead方法得到的数据)转换为字符串。-Can be binary data (such as your method from the ASP
- 2022-02-05 19:45:05下载
- 积分:1
-
arc开发文件,详细介绍了arc的开发步骤和事例的说明,可读性强。...
arc开发文件,详细介绍了arc的开发步骤和事例的说明,可读性强。-arc to develop a document detailing the development of arc steps and examples show that strong readability.
- 2022-03-09 19:16:51下载
- 积分:1
-
Enfora' s latest GPRS product specifications documentation
Enfora公司最新GPRS产品规格文档-Enfora" s latest GPRS product specifications documentation
- 2022-10-29 05:40:03下载
- 积分:1
-
FTP程序完全使用说明.mht,包括详细介绍。
FTP程序完全使用说明.mht,包括详细介绍。-FTP procedures fully use. Mht, including a detailed briefing.
- 2022-07-10 15:03:20下载
- 积分:1
-
10种软件滤波方法的示例程序
1、限副滤波
/* A值可根据实际情况调整
value为有效值,new_value为当前采样值
滤波程序返...
10种软件滤波方法的示例程序
1、限副滤波
/* A值可根据实际情况调整
value为有效值,new_value为当前采样值
滤波程序返回有效的实际值 */
#define A 10
char value
char filter()
{
char new_value
new_value = get_ad()
if ( ( new_value - value > A ) || ( value - new_value > A )
return value
return new_value
}
2、中位值滤波法
/* N值可根据实际情况调整
排序采用冒泡法*/-10 kinds of software filtering method one example of the procedure, limit the Deputy filter/* A value can be adjusted according to the actual value for the RMS, new_value filter for the current sampling procedures for the effective return of the actual value* /# define A 10 char value char filter () (char new_value new_value = get_ad () if ((new_value- value> A) | | (value- new_value> A) return value return new_value ) 2, the median filtering method/* N values can be adjust the actual situation in the use of bubble sort method* /
- 2023-08-29 16:45:03下载
- 积分:1