-
calc大数库,实现了所有的基本大数运算功能
calc大数库,实现了所有的基本大数运算功能-calc library of large numbers, realize all the basic computing functions of large numbers
- 2023-01-07 03:15:03下载
- 积分:1
-
这是计算机本科专业算法分析课程里的一个算法,现用c#实现,供大家学习参考...
这是计算机本科专业算法分析课程里的一个算法,现用c#实现,供大家学习参考-This is the undergraduate professional computer algorithm analysis of the curriculum of an algorithm is used c#, for your reference learning
- 2022-04-09 23:24:09下载
- 积分:1
-
常用算法的C程序。主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与...
常用算法的C程序。主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与逼近、数值积分、常微分方程组的求解、数据处理、极值问题的求解、数学变换与滤波、特殊函数的计算、排序和查找。-Commonly used algorithm of C procedures. Include polynomial terms, complex computation, random number generation, matrix operations, matrix eigenvalue and eigenvector calculations, linear algebra equations, nonlinear equations with the equations, interpolation and approximation, numerical integration, solving ordinary differential equations, data processing, for solving extremum problems, mathematical transformation and filtering, the calculation of special functions, sorting and search.
- 2022-06-02 03:04:12下载
- 积分:1
-
已知某函数在已知点上的函数值,用拉格朗日插值多项式求出其余点的函数值lagrange.c...
已知某函数在已知点上的函数值,用拉格朗日插值多项式求出其余点的函数值lagrange.c-known function of a known point in the function, polynomial interpolation using Lagrange points obtained a function of the remaining value lagrange.c
- 2023-01-26 21:50:04下载
- 积分:1
-
N_queen 问题的遗传算法
这是一个简单的代码为 N 皇后 problem.and 是有用对他们新是在 matlab 环境中的人来说,我相信这是对初学者很有帮助。
- 2022-08-18 11:30:23下载
- 积分:1
-
2维数组 截断 追加 测试
应用背景
二维数组的截断和追加并不像TStringList那么简单。在研究二维数组的截断和追加时,写了本例子来研究。提供给有相同问题的后来人参考,代码有点青涩,毕竟是研究算法的的demo,不喜勿喷!
关键技术
二维数组的截断和追加是一个抽象的概念,本demo把它实例化,可以给爱偷懒的程序学习者参考,不足之处欢迎拍砖。{删除动态数组指定元素的过程: 参数 arr 是数组名, 参数 Index 是要删除的索引}
procedure TForm1.DeleteArrItem(Index:Integer);
var
j:integer;
begin
if Length(MyProArr)>1 then
begin
for j := Index to Length(MyProArr)-2 do begin
MyProArr[j,0]:=MyProArr[j+1,0];
MyProArr[j,1]:=MyProArr[j+1,1];
end;
setlength(MyProArr,Length(MyProArr)-1,2);
end else
begin
setlength(MyProArr,0,2);
end;
- 2022-11-15 14:10:02下载
- 积分:1
-
伪随机数生成算法,很优秀,double 0
伪随机数生成算法,很优秀,double 0-1-pseudo-random number generator algorithm, very good, double 0-1
- 2023-02-09 15:40:04下载
- 积分:1
-
自适应波束形成
关于阵列信号处理的一个C++代码,关于经典的MVDR波束形成算法。自适应Capon波束形成器(Capon Beamforming)的实现算法,具有MFC界面。该算法是先进的,广泛使用在信号处理和通信领域的有效波束形成算法。一个自适应Capon波束形成器(Capon Beamforming)的实现算法。该算法是先进的,广泛使用在信号处理和通信领域的有效波束形成算法。
- 2022-02-27 03:30:48下载
- 积分:1
-
用传输矩阵方法编写的matalb程序,可以用来计算透射率与缺陷折射率之间的关系...
用传输矩阵方法编写的matalb程序,可以用来计算透射率与缺陷折射率之间的关系-Transfer matrix method used to prepare the matalb procedures, can be used to calculate the transmission rate and defects in the refractive index of the relationship between
- 2022-08-21 07:22:13下载
- 积分:1
-
数据结构
快速排序是一种分而治之的排序算法
- 2023-08-27 18:00:06下载
- 积分:1