-
在MATLAB环境中实现最小二乘法和有理分式插值法的程序
在MATLAB环境中实现最小二乘法和有理分式插值法的程序-lspoly and DOS method
- 2022-06-01 07:49:17下载
- 积分:1
-
参加ICPC的acm队员所使用的比赛模板,包括数论图论,计算几何等相关算法。...
参加ICPC的acm队员所使用的比赛模板,包括数论图论,计算几何等相关算法。-ICPC members to participate in the acm template used in the game, including number theory graph theory, computational geometry and other related algorithms.
- 2022-01-25 15:02:22下载
- 积分:1
-
普里姆算法
Java 代码他们一本正经的最小生成树算法。只需更改的值图的代码本身的重量。所有都添加了评论。
- 2022-02-25 04:31:43下载
- 积分:1
-
SPHysics - SPH Free-surface Flow Solver
SPHysics is a platform of Smoothed Particle Hydrodynamics (SPH) codes
inspired by the formulation of Monaghan (1992) developed jointly by researchers
at the Johns Hopkins University (U.S.A.), the University of Vigo (Spain), the
University of Manchester (U.K.) and the University of Rome La Sapienza (Italy).
Developed over a number of years primarily to study free-surface flow phenomena
where Eulerian methods can be difficult to apply, such as waves, impact of
dam-breaks on off-shore structures.
- 2022-05-26 05:01:36下载
- 积分: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
-
bp 神经网络 已测
人工神经网络的c++实现源码,含实现神经网络层的类,神经网络的类,中文详细注释, 并含有使用示例,学习神经网络的好源码-Artificial neural network c++ implementation source code, including achieve the type of neural network layer, the type of neural network, a detailed English notes, and contain the use of examples of good learning neural network source code
- 2022-03-01 18:21:29下载
- 积分:1
-
使用MPI并行编程
用并行编程语言MPI编写整数加法程序。
- 2023-08-13 16:20:03下载
- 积分:1
-
是《计算机常用数值计算算法与程序 C++版》一书的配套C++程序源代码文件,每个源程序文件的文件扩展名都使用.cpp形式。这些C++程序已经在微软公司Windo...
是《计算机常用数值计算算法与程序 C++版》一书的配套C++程序源代码文件,每个源程序文件的文件扩展名都使用.cpp形式。这些C++程序已经在微软公司Windows 平台下的Virsual C++ 6.0环境下通过-is "commonly used computer numerical algorithms and procedures C version," a book supporting the C source code file, the source files extensions are used. Cpp form. These procedures have been in C Microsoft Windows platform under the Virsual C 6.0 environment through
- 2022-05-27 01:10:34下载
- 积分:1
-
投影聚类的快速算法
Fast Algorithms for Projected Clustering - PROCLUS - a traditional subspace clustering algorithm for high dimensional data-Fast Algorithms for Projected Clustering- PROCLUS- a traditional subspace clustering algorithm for high dimensional data
- 2023-08-24 08:00:04下载
- 积分:1
-
图片处理功能
资源描述图像处理简单程序,Qt开发, 实现图像的亮度, 灰度, 锐化等基本处理。
- 2022-03-13 10:25:25下载
- 积分:1