CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - main.c

搜索资源列表

  1. 高斯列主元素消去法(C++)

    0下载:
  2. C++编写的高斯列主元素消去法。界面不够好,不过算法没问题。-C + + out of the main elements of Gaussian Elimination Act. Interface is not good enough, but Algorithm no problem.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:9875
    • 提供者:wf
  1. C程序自动测试程序系统

    1下载:
  2. C程序自动测试程序系统,主要是测试数据结构中的几个经典算法:关于排序,树的遍历等.-C automatic test procedures, test data is the main structure of classical algorithm : Sort of, such as tree traversal.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:579464
    • 提供者:徐杰
  1. speech_enhancement_GUI

    0下载:
  2. 自己编写GUI界面实现语音增强,可在main.c中点击菜单debug中的run便可以运行程序,可分别实现谱相减、最小均方和维纳滤波语音增强-GUI interface to prepare themselves to achieve enhanced voice, in main.c which debug menu click the run will be operating procedures, can be achieved spectral subtraction, both the
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:97703
    • 提供者:Richard
  1. apriori(C++)

    2下载:
  2. 本算法的基本功能是用C++语言实现了APRIORI算法,用户可以先选择要进行的操作。然后再输入支持度和置信度,就可得到挖掘的结果。 输出的结果主要包括两个部分。 1.输出所有的频繁项集。 2.输出所有的产生的规则。 算法还能够输出初始的事务集合,并且可以输出产生的中间结果。-the algorithm is the basic functions using C + + language of APRIORI algorithm, Users may choose to cond
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:59589
    • 提供者:linvg
  1. c

    0下载:
  2. c++冒泡排序#include \"stdio.h\" void sort() { int i,count=0,a[20] int k=20 printf(\"please input 20 defferent numbers?\\n\") for(i=0 i<20 i++) scanf(\" %d\\a\",&a[i]) while(count<20) { for(i=0 i<k i++)
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:623
    • 提供者:李仅
  1. itpp-4.2.tar 信号处理和通信类功能的C++库

    3下载:
  2. IT++是一个数学,信号处理和通信类功能的C++库。它的主要用途是模拟通信系统,并进行研究相关领域的通信。它综合了Matlab的功能和C的速度,适合于信号处理等领域。-IT++ is a mathematical, signal processing and communications functions in C++ libraries. Its main purpose is to simulate communications systems, and conducting resear
  3. 所属分类:数学计算/工程计算

    • 发布日期:2017-04-09
    • 文件大小:1328069
    • 提供者:寒风
  1. DS

    1下载:
  2. DS证据理论中的合成规则的算法实现;该算法对两个基本可信度分配(BPA)的合成规则进行实现,算法包含在DS.h文件中,main.c文件对其进行调用,并对简单示例进行测试。-DS evidence theory in the synthesis of the rules of algorithm the algorithm two basic probability assignment (BPA) to achieve the synthesis rules, the algorithm is
  3. 所属分类:AI-NN-PR

    • 发布日期:2015-11-02
    • 文件大小:10907
    • 提供者:liuxiang
  1. RDA5820_datasheet_V1_3

    0下载:
  2. RDA5820发射模块的参考设计图纸及主要问题解决方法-RDA5820 transmitter module reference design drawings and the main problem solving method
  3. 所属分类:matlab

    • 发布日期:2016-01-25
    • 文件大小:677259
    • 提供者:axiong
  1. c语言分析

    0下载:
  2. 一个关于编译原理的编程,是一个c语言来实现的,可以运行。主要是分析输出。-a compiler on the Principle of programming, is a C language to achieve, and can run. Analysis is the main output.
  3. 所属分类:Data structs

    • 发布日期:2017-11-15
    • 文件大小:3186
    • 提供者:lee
  1. tree

    0下载:
  2. 这是一个二叉树的算法,主要用C++开发,只写了二叉树的核心代码,该代码已经调试通过可以直接运行.该算法也没有输入功能,为了方便大家看清二叉树的结构,把输入的数据都在源码中用一个数组存放好的-This is a binary tree algorithms, the main C++ Development, only to write a binary tree of the core code, the code has been run directly through debugging.
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:1749
    • 提供者:李梓钺
  1. C++

    0下载:
  2. 标准答案习题1 1.1 简述C++语言程序的结构特点。 答: (1)C++程序由一个或多个函数组成,其中至少有一个主函数main(),程序从主函数开始执行,由主函数来调用其他函数。-Standard answer to Exercise 11.1 on C++ Language program structural characteristics. Answer: (1) C++ Procedures by one or more functions, of which at lea
  3. 所属分类:Data structs

    • 发布日期:2017-04-01
    • 文件大小:40570
    • 提供者:张建军
  1. dijkstra-c++

    0下载:
  2. Dijkstra算法是典型的最短路算法,用于计算一个节点到其他所有节点的最短路径。主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。 Dijkstra算法能得出最短路径的最优解,但由于它遍历计算的节点很多,所以效率低。Dijkstra算法是一种逐步搜索算法,通过为每个顶点n保留目前为止所找到的从m到n的最短路径来工作的。 c#实现算法-Dijkstra algorithm is a typical example of the most short-circuit algorithm
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-25
    • 文件大小:1939
    • 提供者:kivilin
  1. CPN

    0下载:
  2. cpn算法例程,主要用c++实现,分两层实现,等等,自己看吧,-CPN algorithm routines, the main c++ achieved, divided into two levels to achieve, and so on, their own look,
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:5819
    • 提供者:xiaoying
  1. Matrix

    3下载:
  2. 一些矩阵运算的函数,包括两个矩阵相加,两个矩阵相减,两个矩阵相乘,矩阵复制,矩阵求逆的全选主员高斯-约当法,矩阵的三角分解(LU分解),求Hessenberg矩阵全部特征根的QR法,约化一般实矩阵为Hessenberg矩阵的初等相似变换-A function of a number of matrix operations, including the sum of two matrices, subtract two matrices, the two matrices, matrix dup
  3. 所属分类:Algorithm

    • 发布日期:2017-03-28
    • 文件大小:4007
    • 提供者:chen changqing
  1. linklist

    0下载:
  2. c语言 单链表的实现 包含三个文件linklist.c linklist.h main.c-c language to achieve a single linked list
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:1180
    • 提供者:yangheng
  1. stack

    0下载:
  2. c语言 栈的实现 包含三个文件stack.h stack.c main.c-c language stack implementation consists of three files stack.h stack.c main.c
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:6758
    • 提供者:yangheng
  1. main.c

    0下载:
  2. Minkowski Addition Platform: Any Language: C Graphical Library: Allegro
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:3138
    • 提供者:Ju994lo
  1. main.c.tar

    0下载:
  2. Main function to solve a rubick cube using Genetic Algorithms
  3. 所属分类:Algorithm

    • 发布日期:2017-04-12
    • 文件大小:1472
    • 提供者:Felipe
  1. main.c

    1下载:
  2. 使用c语言的WS小世界生成算法,同时计算了网络的最短距离、度分布、聚集系数(WS SMALL WORLD NETWORK GENERATE ALGORITHM BY USING C)
  3. 所属分类:仿真建模

    • 发布日期:2017-12-27
    • 文件大小:2048
    • 提供者:nicky_0419
  1. C常用算法程序集(第二版)

    0下载:
  2. 针对工程中常用的行之有效的算法而编写,其主要内容包括多项式的计算、复数运算、随机数的产生、矩阵运算、矩阵特征值与特征向量的计算、线性代数方程组的求解、非线性方程与方程组的求解、插值与逼近、数值积分、常微分方程组的求解、数据处理、极值问题的求解、数学变换与滤波、特殊函数的计算、排序和查找。(The effective algorithm commonly used in engineering and preparation, the main contents include polynomia
  3. 所属分类:数值算法/人工智能

« 12 3 4 5 6 7 8 9 10 ... 17 »
搜珍网 www.dssz.com