-
设计了矩阵类,该类实现了矩阵的数学运算,包括矩阵乘除/求逆/求特征向量的!...
设计了矩阵类,该类实现了矩阵的数学运算,包括矩阵乘除/求逆/求特征向量的!-Design a matrix type, such realization of the matrix arithmetic, including matrix multiplication and division/inversion/demand eigenvector!
- 2022-03-17 23:19:38下载
- 积分:1
-
并行编程中Monte Carlo方法求π值的程序说明(具体采用MPI+C语言实现)...
并行编程中Monte Carlo方法求π值的程序说明(具体采用MPI+C语言实现)-Parallel programming methods in the Monte Carlo description of the procedures seek π value (specific language using MPI C)
- 2022-01-21 02:15:29下载
- 积分:1
-
能算800位Pi值的超级代码
能算800位Pi值的超级代码-can count 800 Pi value of the Super code
- 2022-02-13 20:21:35下载
- 积分:1
-
矩阵直接三角分解法的c++语言实现
矩阵直接三角分解法的c++语言实现 -direct triangular matrix decomposition of the C Language
- 2022-07-18 15:19:19下载
- 积分:1
-
bit operation for 64.
bit operation for 64.
- 2022-12-15 05:30:03下载
- 积分:1
-
MP3编码解码
这个是PC端实现MP3编解码,通过浮点型double类型,实现比较复杂!
- 2023-07-05 07:20:03下载
- 积分:1
-
改进的带记忆的模拟退火算法求解TSP问题
资源描述采用多普勒型降温曲线,在传统算法的基础上添加了记忆功能,可测试中国31/64/144以及att48城市的数据,也可自行输入数据进行测试,测试结果基本达到当前最优水平,测试请运行duoci.m文件
- 2022-11-17 21:00:03下载
- 积分:1
-
program for computation of geography distance and azimuth, especially for earth...
计算地理距离和方位角的程序,特别实用于地球曲线计算-program for computation of geography distance and azimuth, especially for earth curve
- 2023-02-23 17:50:04下载
- 积分:1
-
禁忌搜索算法的例子程序求解Tsp问题
禁忌搜索算法的例子程序求解Tsp问题- The taboo search algorithm example procedure solves the Tsp
question
- 2023-04-11 18:30:04下载
- 积分:1
-
矩阵运算
// 矩阵乘法: C=AB, A[m×v], B[v×n], C[m×n] ... for row-major matrices
// 允许A,B,C 带入相同参数.
double* matr_x(double*C, const double*Ao, const double*Bo, const int m,const int v, const int n){
if(!Ao || !Bo) return 0; if(!C) C=new double[m*n];
double* A=new double[m*v], * B=new double[v*n];
memcpy(A,Ao,m*v*sizeof(double)); memcpy(B,Bo,v*n*sizeof(double));
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-04-07 01:39:24下载
- 积分:1