-
该程序模拟一个具有不确定性的多带图灵机。它是工作的。
The program simulates a Nondeterministic Multitape Turing Machine. It works as ordinary (Deterministic) Turing Machine as well.
- 2022-04-06 15:10:00下载
- 积分:1
-
fortran version of singular value decomposition subroutine, suitable for meteoro...
fortran版奇异值分解子程序,适合气象统计计算。-fortran version of singular value decomposition subroutine, suitable for meteorological statistical computing.
- 2022-06-27 17:25:01下载
- 积分:1
-
deteksi Tepi Prewitt
应用背景deteksi Tepi公司使用metode Prewitt,mendeteksi Tepi达日公司关键技术充分认识神和我们的主tugas POLA使aplikasi,ini,也从互联网为referensi
- 2022-01-22 05:23:06下载
- 积分:1
-
MSLSⅠ多步递推最小二乘法
Msls分三步对系统和噪声模型进行辨识,采用脉冲序列作为辅助系统模型,用计算输出数据;用原输出数据计算,用递推最小二乘方法分别...
MSLSⅠ多步递推最小二乘法
Msls分三步对系统和噪声模型进行辨识,采用脉冲序列作为辅助系统模型,用计算输出数据;用原输出数据计算,用递推最小二乘方法分别对系统参数和模型参数进行估计。
-MSLS Ⅰ recursive least squares multi-step Msls three steps on the system and noise model identification, the use of pulse sequence as a supplementary system model, the calculation of the output data with the original output data, the use of recursive least squares method on system parameters, respectively, and model parameters estimated.
- 2022-03-25 05:06:46下载
- 积分:1
-
这是一个骑士周游的问题 希望对大家有帮助
这是一个骑士周游的问题 希望对大家有帮助-This a tour of the Cavaliers hope to be helpful
- 2022-02-04 18:00:22下载
- 积分:1
-
克里格algorithym
Kriging 内插算法 通过已知点的测量值来内插获取未知点的预测-Kriging algorithym
- 2022-03-04 00:57:53下载
- 积分:1
-
优化一个变量的函数
翻译 maninwest@Codeforge 作者:John D. Cook@CodeProject这里介绍一个算法,优化化带有一个变量的函数而不需要导数。通常,需要导数的方法稳定但是慢,不需要导数的方法快捷但是不稳定。这里实现的这个方法稳定且高效。这个方法开始是Richard Brent 实现的。 给定一个函数 f(x) 和一个区间l [a, b], 该方法是找出函数 f(x) 在 [a, b] 区间的最小值。该方法也可以用于找出最大值。要找出最大值,指向传递原函数的反函数。即 f(x) 的最大值出现在-f(x) 的最小值点。Brent 的方法比较稳定。也很容易使用。用户不需要提供导数函数。该方法为了稳定牺牲了一些效率,但是相比其他稳定的方法如黄金分割法,则更加快捷。使用函数这里给出的代码是一个 C++ 函数和使用此函数的示例项目。要在你自己的项目中使用,只需在 Brent.h.头文件中添加#include 即可。最小化函数的主要输入是一个模板化实参,一个函数对象实现目标函数最小化。目标函数必须使用签名 double operator()(double x)实现 Public 方法。例如,这里是一个用于计算函数 f(x) = -x exp(-x) 的函数对象类。 class foo
{
public:
double operator()(double x) {return -x*exp(-x);}
};代码需要函数对象而不是函数的主要原因是,需要在应用中优化的函数,除了函数实参外,还要依赖参数。函数对象可以有很多参数,它们在找到一个变量的结果函数最小值前固定。其他实参是函数需要找到最小值的区间的终点,偏差用于停止, 一个输出参数用
- 2022-01-26 15:15:42下载
- 积分:1
-
a full 3D simulation of electromagnetic waves with efficient absorbing boundary...
a full 3D simulation of electromagnetic waves with efficient absorbing boundary a full 3D simulation of electromagnetic waves with efficient absorbing boundary conditions SYNOPSIS- a full 3D simulation of electromagnetic waves with efficient absorbing boundary a full 3D simulation of electromagnetic waves with efficient absorbing boundary conditions SYNOPSIS
- 2022-05-25 07:53:42下载
- 积分:1
-
徐士良写的《数值分析与算法》,这是随书的源程序,有需要的朋友可以下来看看!...
徐士良写的《数值分析与算法》,这是随书的源程序,有需要的朋友可以下来看看!-XU Shi-liang wrote the "Numerical Analysis and algorithm", it is with the source, a friend in need can look down!
- 2023-08-08 03:15:04下载
- 积分:1
-
Lms 算法 2
LMS算法在atennas用于抑制interferances。该算法使用一个随机输入,25元件,一个lambda/ 2元件间的距离,亩=0.008,以获得最佳的波束形成,并在信号的到达方向上的较高的功率。
- 2023-02-21 13:25:03下载
- 积分:1