-
c数值算法程序大全
包含几百个数值计算算法,如低通滤波,高通滤波,带通滤波,c语言源码。
- 2022-04-25 18:07:59下载
- 积分:1
-
袁亚湘与孙文渝合写的《最优化理论与算法》,个人认为本书非常经典。...
袁亚湘与孙文渝合写的《最优化理论与算法》,个人认为本书非常经典。-Good Book!
- 2022-07-07 05:10:01下载
- 积分:1
-
全区间积分的阿当姆斯方法
全区间积分的阿当姆斯方法-region between Integral Methods A ADAMS
- 2022-01-26 03:07:44下载
- 积分:1
-
在测绘或地图学中,经常会需要用高程点生成DEM,一般首先由这些点按最小原则生成三角网,此代码即是根据任意多个点生成Delaunay三角网功能。...
在测绘或地图学中,经常会需要用高程点生成DEM,一般首先由这些点按最小原则生成三角网,此代码即是根据任意多个点生成Delaunay三角网功能。-In the mapping or cartography often elevation point will need to generate DEM, generally the first point from these principles by the smallest triangulation generated, the code that is generated in accordance with any number of points, Delaunay triangulation function.
- 2022-06-12 17:50:14下载
- 积分:1
-
频率-波数域波动方程数值模拟代码
应用背景波动方程数值模拟可以分为单程波动方程数值模拟和双程波动方程数值模拟。用弹性波或声波方程描述地震波在地下介质中的传播即是地震波的双程波理论,它反应了地震波传播的主要物理特征,具有很高的模拟精度,但是计算量大。鉴于目前主要以纵波勘探为主,而且在地震资料处理中主要分析和利用一次反射波,将多次反射波等其他波均视为噪音。此外,就研究地下特殊地质构造的地震响应及验证地质模型而言,正确地模拟复杂构造的一次反射波己满足需要。因此,本文采用频率-波数域的单程波动方程波场延拓算子进行数值模拟,它不仅计算效率高,而且可以得到高信噪比的波场模拟记录,只包含一次反射波和不规则点的绕射波,与实际资料有很高的对比性。关键技术 利用频率-波数域波动方程进行地震波场数值模拟的核心是波场延拓,对于垂向变速介质,利用二维标量波动方程,在频率—波数域可以得到各个深度间隔内的相位移延拓的正演和偏移公式。这里有本人实现的两种延拓算子:相移法(PS)和相移加插值法(PSPI)。其中PSPI为目前主要用于实际生产的频率波数域正演模拟方法之一。这种方法能适用于速度横向变化的复杂地下地质体,其计算速度快,且可以较好的保留速度横向变化的复杂地质体的地震波场特征。
- 2023-04-21 18:35:03下载
- 积分:1
-
要求出一个矩阵的逆矩阵有许多方法,这里介绍以 Gauss
要求出一个矩阵的逆矩阵有许多方法,这里介绍以 Gauss-Jordan Elimination 来求出逆矩阵的方法,算法函数用C++写成,可在C++编程环境下直接调用-requested a matrix inverse matrix there are many ways here to introduce the Gauss-Jordan Elimination get to the inverse matrix method, the algorithm functions with C languages, the C programming environment called directly
- 2022-03-31 21:28:42下载
- 积分:1
-
This algorithm was developed by Professor Ronald L. Rivest of MIT and can be fou
This algorithm was developed by Professor Ronald L. Rivest of MIT and can be found presented in several languages. What I provide to you here is a C++ derivative of the original C implementation of Professor Rivets. The library code itself is platform-independant and has been tested in Redhat Linux. I ve included the sample code and makefile that I used for the Linux test. The demo, however, was written with Visual C++ 6 on a Windows 2000 platform.-This algorithm was developed by Professor Ronald L. Rivest of
MIT and can be found presented in several languages. What I provide to
you here is a C derivative of the original C implementation of
Professor Rivets. The library code itself is platform-independant and
has been tested in Redhat Linux. I ve included the sample code and
makefile that I used for the Linux test. The demo, however, was
written with Visual C 6 on a Windows 2,000 platform.
- 2022-01-27 12:21:27下载
- 积分:1
-
此算法是牛顿欧拉法(在VC环境下)
此算法是牛顿欧拉法(在VC环境下)-this method is newton-euler method
- 2022-04-30 09:53:49下载
- 积分:1
-
For solving a number of matrix even by the best algorithm that can optimize the...
对于求解多个矩阵连乘的最好的算法,能最优化的最短时间能求出值-For solving a number of matrix even by the best algorithm that can optimize the shortest time that can derive value
- 2023-03-03 19:10:03下载
- 积分:1
-
c++A*寻路
这篇文章很适合A*算法的初学者,可惜网上没找到翻译版的。本着好东西不敢独享的想法,也为了锻炼一下英文,本人译了这篇文章。
由于本人英文水平非常有限,六级考了两次加一块不超过370分,因此本译文难免存在问题。不过也算是抛砖引玉,希望看到有更多的游戏开发方面的优秀译作出现,毕竟中文的优秀资料太少了,中国的游戏开发者的路不好走。
本人能力有限,译文中有小部分词句实在难以翻译,因此暂时保留英文原文放在译文中。对于不敢确定翻译是否准确的词句,本人用圆括号保留了英文原文,读者可以对照着加以理解。
A*算法本身是很简单的,因此原文中并没有过多地讨论A*算法本身,而是花了较大的篇幅讨论了用于保存OPEN和CLOSED集的数据结构,以及A*算法的变种和扩展。
编程实现A*是简单的,读者可以用STL对本文中的伪代码加以实现(本人已花一天时间实验过基本的A
- 2022-02-20 19:40:30下载
- 积分:1