-
求矩阵的逆矩阵
求某矩阵的逆矩阵-find the inverse matrix of a matrix
- 2022-07-01 14:59:57下载
- 积分:1
-
computer control Lawes list achieve
计算机控制--劳斯表实现-computer control Lawes list achieve
- 2022-08-11 15:15:50下载
- 积分:1
-
单纯型法
单纯型法-Simplex method
- 2023-04-30 13:55:03下载
- 积分:1
-
RBF神经网络PID控制程序
利用径向基神经网络整定的PID控制,调节PID控制器的Kp、Ki、Kd三个参数,输入是方波和1,相应速度快,三个参数变化明显,内涵中文注释。
- 2023-05-19 07:20:03下载
- 积分:1
-
计算尺寸因子对消光效率和散射效率,吸收效率,后向散射效率等的影响...
计算尺寸因子对消光效率和散射效率,吸收效率,后向散射效率等的影响-calculation of the size factor extinction efficiency and the efficiency of scattering, absorption efficiency, after scattering efficiency of
- 2022-02-24 16:59:31下载
- 积分:1
-
对称算法AES
高级加密标准(Advanced Encryption Standard,AES),在密码学中又称Rijndael加密法,是美国联邦政府采用的一种 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-07-10 03:25:38下载
- 积分:1
-
这是一个图论Gomory-Hu算法!!!
This is a Gomory Hu algorithm-This is a Gomory Hu algorithm!!!
- 2022-03-14 12:08:08下载
- 积分:1
-
一多项式求值,求导,减法,乘法,加法. 输出形式为类数学表达式, 指数升序排列....
一多项式求值,求导,减法,乘法,加法. 输出形式为类数学表达式, 指数升序排列.-a polynomial function, derivation, subtraction, multiplication and addition. Output form of mathematical expression category, the index in ascending order.
- 2022-04-18 23:42:48下载
- 积分:1
-
一个求解Josephus问题的函数
#include
#include
#define NULL 0
#include
typedef struct Lnode
{
int data;
struct Lnode *next;
}Josephus;
void CreateList(Josephus*&L,int n)//建立循环链表
{
int i;
Josephus *p,*s;
s=(Josephus*)malloc(sizeof(Josephus));
s->data=1;
L=p=s;
for(i=2;idata=i;
p->next=s;
p=s;
}
p->next=L;
}
void DeleteList(Josephus*&L,Josephus*p,Josephus*q)
{
q->next=p->next;
free(p);
}
void Josephus1(Josephus*&L,int s,int m)
- 2022-01-27 23:12:59下载
- 积分:1
-
PSO解决背包问题
背包问题
- 2023-07-25 04:35:03下载
- 积分:1