-
矩阵运算
// 矩阵乘法: 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
-
交互支持向量机学习算法及其应用
交互支持向量机学习算法及其应用- Alternately supports the vector machine study algorithm and its
applies
- 2022-03-18 12:04:40下载
- 积分:1
-
单片机Max485协议转TTL协议
本程序方便实现max485协议转换为sonyvisca协议,非常实用,一片单片机完全搞定,轻松实现。。。。
- 2022-06-22 04:45:09下载
- 积分:1
-
一个基于黑板模型的专家系统
一个基于黑板模型的专家系统-based on a blackboard model of expert system
- 2022-09-21 13:15:03下载
- 积分:1
-
迪杰斯特拉最短路径算法
迪杰斯特拉最短路径算法-Floyd shortest path algorithm
- 2023-08-08 05:50:03下载
- 积分:1
-
C++Bulider与Matlab的混合编程中的用C++Bulider来实现Matlab的技术文章
C++Bulider与Matlab的混合编程中的用C++Bulider来实现Matlab的技术文章-Bulider C and Matlab programming mixed with the C Bulider to achieve Ma tlab technical articles
- 2022-02-07 03:23:38下载
- 积分:1
-
高级的加密标准 (AES)
高级加密标准(AES)
- 2022-04-06 09:36:06下载
- 积分:1
-
路径查找代码[dephi版本代码]
路径查找代码[dephi版本代码]-path search code [code dephi version]
- 2023-03-28 00:50:04下载
- 积分:1
-
MOEA framework
应用背景The MOEA Framework is a free and open source Java library for developing and
experimenting with multiobjective evolutionary algorithms (MOEAs) and other
general-purpose multiobjective optimization algorithms. The MOEA Framework
supports genetic algorithms, differential evolution, particle swarm
optimization, genetic programming, grammatical evolution, and more. A number of
algorithms are provided out-of-the-box, including NSGA-II, NSGA-III, ε-MOEA,
GDE3 and MOEA/D. In addition, the MOEA Framework provides the tools necessary
to rapidly design, develop, execute and statistically test optimization
algorithms.关键技术Its key features includes:
* Fast, reliable implementations of many state-of-the-art algorithms
* Extensible with custom algorithms, problems and operators
* Supports master-slave, island-model, and hybrid parallelization
&n
- 2022-02-28 22:09:39下载
- 积分:1
-
一个c++推箱子游戏源码
应用背景
一个简单的推箱子游戏源码
很早的时候写的
游戏虽然没几关
不过直接添加游戏关卡的地图数组就可以了
关键技术
图形绘制
游戏算法
mfc等
- 2022-01-29 01:01:20下载
- 积分:1