-
cholesky分解 c++
#include
#include
#include
#include
#include
using namespace std;
int main (int argc, char* argv[])
{
cout
- 2022-01-27 16:58:06下载
- 积分:1
-
这是一个用Turboc2.0写的程序,实现了组合数学的字典序法。详细可以参考卢开澄的《组合数学》清华大学出版社
这是一个用Turboc2.0写的程序,实现了组合数学的字典序法。详细可以参考卢开澄的《组合数学》清华大学出版社-Turboc2.0 used to write procedures to achieve a combination of mathematics lexicographic law. Detailed information can be opened Cheng Lu "Combinatorial Mathematics" Qinghua University Press
- 2023-03-27 10:45:03下载
- 积分:1
-
本文较全面的介绍了kalman滤波器的基本原理,并用几个例子做了介绍,给出了源码...
本文较全面的介绍了kalman滤波器的基本原理,并用几个例子做了介绍,给出了源码-In this paper, a more comprehensive introduction of the basic principles of kalman filter and used to do a few examples of the introduction given source
- 2022-03-26 16:54:58下载
- 积分: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
-
实现高斯施戴尔迭代,可以直接输出迭代矩阵,并且,误差可以手动修改。...
实现高斯施戴尔迭代,可以直接输出迭代矩阵,并且,误差可以手动修改。-computate guass-sedal process
- 2022-10-31 23:10:02下载
- 积分:1
-
高斯―塞德尔迭代法。
高斯―塞德尔迭代法。-Gauss- Seidel iteration.
- 2022-05-22 21:37:54下载
- 积分:1
-
求解非线性方程组的一组源代码,FORTRAN90.用于解决N个未知数,N
求解非线性方程组的一组源代码,FORTRAN90.用于解决N个未知数,N-1个方程.-Solving nonlinear equations of a set of source code, FORTRAN90. For settlement of N unknown, N-1 equations.
- 2023-03-13 04:40:03下载
- 积分:1
-
计算圆覆盖率源程序,很精彩!
计算圆覆盖率源程序,很精彩!-round coverage calculation source, wonderful!
- 2022-07-17 11:39:06下载
- 积分:1
-
including large numbers of calculating the arithmetic
大数的计算包括加减乘除-including large numbers of calculating the arithmetic
- 2022-02-05 22:22:15下载
- 积分:1
-
AR 模型拟合,解决多变量自回归 (AR) 模型的参数估计问题
AR 模型拟合,解决多变量自回归 (AR) 模型的参数估计问题-AR model fitting, since the settlement multivariable regression (AR) model parameter estimation problems
- 2022-07-16 00:33:05下载
- 积分:1