-
BCH3121编解码实现
BCH(31,21)编码 译码源程序。
- 2022-08-06 15:44:55下载
- 积分:1
-
c语言实现的离散傅立叶(DFT)变换。非快速傅里叶变换,基本的傅里叶变换。...
c语言实现的离散傅立叶(DFT)变换。非快速傅里叶变换,基本的傅里叶变换。-A basic Discrete Fourie Transform program, not Fast Discrete Fourie Transform
- 2022-06-18 02:58:18下载
- 积分:1
-
zeoppritz方程正演
利用zeoppritz方程求取反射系数,合成地震记录。1D Zoeppritz正演,avo分析,也可以进行AVA分析。
- 2022-05-29 00:56:53下载
- 积分:1
-
矩阵奇异分解(svd)最新c++版本,性能更稳定
矩阵奇异分解(svd)最新c++版本,性能更稳定-matrix decomposition (SVD) c latest version of a more stable performance
- 2023-05-31 05:40:02下载
- 积分:1
-
行李员福特算法
/*
距离向量路由选择在此程序中使用信号工福特算法实现:-
*/
#include < stdio.h >
结构节点
{
无符号的 dist [20] ;
无符号从 [20] ;
} rt [10] ;
int main)
{
int costmat [20] [20] ;
int 节点,我、 j、 k、 计数 = 0 ;
printf ("nIngrese el 第 de nodos:") ;
scanf ("%d",& 节点) ; //incertar los nodos
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-01-26 19:59:01下载
- 积分:1
-
一个n元编码
一个n元编码-A n-coding
- 2022-01-31 09:45:23下载
- 积分:1
-
solving nonlinear equations in a way : by using a method of optimizing initial G...
解非线性方程组的一种方法:先用一种优化方法将给定初值(它有可能会使得后续的牛顿法发散)通过一条比较快的途径收敛到精确解附近,得到一个新的初始点,然后再通过牛顿法将新的初始点迭代到精确解(一定的误差范围内)。这种方法的优点在于:它可以将牛顿法快速收敛的优势发挥出来,同时又避免了该方法收敛域比较窄的缺点。-solving nonlinear equations in a way : by using a method of optimizing initial Givens (it might make follow-up to Newton"s law divergence) adopted a relatively fast convergence to the channel near the exact solution, to be a new starting point, and then Newton"s law of the new iteration of the initial point of the exact solution ( some of error). This method has the advantage : it can be rapid convergence of Newton"s method to exploit the advantages while avoiding convergence of the method is relatively narrow domain shortcomings.
- 2022-03-20 10:21:18下载
- 积分:1
-
计算机算法与分析,包括书后习题答案,供参考了
计算机算法与分析,包括书后习题答案,供参考了-Computer algorithms and analysis, including the answer to the book Exercises for the reference to the
- 2022-01-30 10:53:27下载
- 积分:1
-
实现Apriori算法基本功能,获取测试数据集的关联规则
实现Apriori算法基本功能,获取测试数据集的关联规则-Realize the basic functions of Apriori algorithm,Access to test data sets of association rules
- 2022-02-09 13:08:37下载
- 积分:1
-
迭代加深八数码
#include
#include
using namespace std;//变量声明
class EiNum;
#define MAX 20//MAX为最大的迭代深度
int depth;//当前树的最大深度
EiNum * root[MAX + 1];//重复当前的路径
//交换两个数
void Swap(int &a,int &b) {
int temp;
temp = a;
a = b;
b
- 2022-08-10 21:09:51下载
- 积分:1