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

搜索资源列表

  1. 一元稀疏多项式计数器

    1下载:
  2. 一元稀疏多项式计算器[加法和乘法] 问题描述: 设计一元系数多项式计数器实现两个多项式间的加法、减法。 基本要求: (1) 输入并建立多项式 (2) 输出多项式,输出形式为整数序列:n,c1,e1,c2,e2……cn,en,其中n是多项式的项数,ci,ei分别为第i项的系数和指数。序列按指数降序排列。 (3) 多项式a和b相加,建立多项式a+b,输出相加的多项式。 (4) 多项式a和b相减,建立多项式a-b,输出相减的多项式。 用带表头结点的单链表存储多项式。 测试数据: (1) (2x+5x8
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:36.95kb
    • 提供者:陈宇
  1. gep编程基础2-27

    0下载:
  2. GEP(基因表达式程序设计)是一种新的演化算法,该文件是基本的GEP编程,采用功能的封装格式,测试通过,能够方便的使用。-GEP (Gene Expression Program Design) is a new evolutionary algorithm, which is the basic GEP programming, functional package format, through testing, to facilitate their use.
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:15.07kb
    • 提供者:龚文引
  1. Basic_of_CMA

    0下载:
  2. 恒模算法的简介,它适用于信道的盲均衡。Matlab程序提供基本的框架,可以修该里面的参数以测试该算法的性能-CMA briefings, which applies to Channel Blind balanced. Matlab to provide a basic framework, it can be done inside of the parameters to test the performance of the algorithm
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:145.84kb
    • 提供者:冰激凌
  1. song-robu-i1m

    0下载:
  2. 自动控制回路在3个水箱中的测试和反馈,用于观察自动控制系统的负反馈,和一些基本的运算-control loop in three tanks of testing and feedback, automatic control system for the observation of negative feedback, and some basic arithmetic
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:15.77kb
    • 提供者:songxiaohu
  1. chinapi_demo

    0下载:
  2. 这些是我特地制作的分布式计算的示例程序,仅供各位相关开发人员参考使用 本作以ChinaPI的第一个内部测试版作为蓝本修改而成,旨在提高中国分布式计算的设计水平 架构完整,包含除安全组件的其他重要组件(为了突出分布式计算和ChinaPI的安全,各个组件均进行了简化) 对PI的计算使用BBP公式(计算核心部分并非重点,写得比较乱) 为了通俗易懂,使用VB6.0编写 文档并非标准文档,只是示意性的 相关源码及文档可以经修改后再发行,但须遵循以下条款: 1、源码及
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:111.04kb
    • 提供者:侯欣杰
  1. 基本排序算法

    0下载:
  2. C语言基本排序算法,经过测试!-C language basic sorting algorithm, the test!
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:1.2kb
    • 提供者:郭勇军
  1. 测试PSO算法的新的组合测试函数

    1下载:
  2. Novel Composition Test Functions for Numerical Global Optimization func_test.m is the main program, a basic PSO algorithm PSO_func.m is attached. SIS_novel_func.m is the function program,including six composition functions f=SIS_novel_func(x,f
  3. 所属分类:matlab例程

    • 发布日期:2009-10-28
    • 文件大小:58.25kb
    • 提供者:fyg26856469
  1. LinkList 实现单链表的所有基本操作

    1下载:
  2. 1、实现单链表的所有基本操作包括表的初始化、第i个元素前插入一个新的元素、删除第i个元素、查找某元素、顺序表的销毁。 2、测试链表所有功能 3、实现循环链表的基本操作,并编写测试程序。 4、实现双向链表的基本操作,并编写测试程序。 5、实现单链表的逆置。 6、判定两个链表是否相交。-A single linked list of all the basic operations, including the initialization of the table,
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-10-22
    • 文件大小:3.76kb
    • 提供者:陈小默
  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
    • 文件大小:10.65kb
    • 提供者:liuxiang
  1. 二叉树的基本操作

    2下载:
  2. 二叉树的基本操作(1)在二叉链表上设计和实现下列二叉树运算的算法 ① 设计递归算法,实现:删除二叉树,求二叉树的高度,求二叉树中叶子结点数,复制二叉树,交换二叉树的左右子树。 ② 设计算法,按自上到下,自左向右的次序,即按层次遍历一棵二叉树。 ③ 设计main函数,测试上述每个运算。 -Binary Tree s basic operations (1) in the binary list on the design and realization of the fol
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-11-24
    • 文件大小:1.72kb
    • 提供者:
  1. chengxu

    0下载:
  2. 基本的DCT水印嵌入和提取的方法。使用DCT算法嵌入水印信息 3)使用DCT算法提取水印信息 4)对嵌入水印的载体进行不可感知性测试 5)对嵌入水印的载体进行鲁棒性测试。 -Basic DCT watermark embedding and extraction method. 3) using the DCT algorithm to extract the watermark information 4) the carrier of the embedded waterma
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-11-26
    • 文件大小:271.8kb
    • 提供者:nieyanlong
  1. bp1

    0下载:
  2. 基本的BP算法,将训练样本和测试样本已载入,可根据需要更换上述样本-Basic BP algorithm, the training samples and test samples have been loaded, may need to be replaced in accordance with the above-mentioned samples
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-30
    • 文件大小:13.49kb
    • 提供者:张丽
  1. pso4

    0下载:
  2. 此文件为Matlab编的一个基本pso算法,所用测试函数为 Rastingin-Matlab prepared this document for a basic PSO algorithm, used in the test function Rastingin
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:1.76kb
    • 提供者:董淑华
  1. NBJG

    0下载:
  2. 设计一个测试程序比较几种内部排序算法的关键字比较次数和移动次数以取得直观感受。 基本要求 :(1)对起泡排序、直接排序、简单选择排序、快速排序、希尔排序、堆排序算法进行比较; (2)待排序表的表长不小于1000,表中数据随机产生,至少用5组不同数据作比较,比较指标有:关键字参加比较次数和关键字的移动次数(关键字交换记为3次移动); (3)输出比较结果。 -Design a testing procedure based on comparing several internal
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:44.92kb
    • 提供者:迟浩东
  1. acm_code

    0下载:
  2. 一些ACM基本算法的测试源码,可做简单的模板用,共11个。-Some of the basic algorithm ACM test source, the template can be easy to use, a total of 11.
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-15
    • 文件大小:7.25kb
    • 提供者:ffx
  1. SqList

    0下载:
  2. 在VC6.0环境下,用C实现顺序表的基本操作:建立空表、销毁表、清空表、求表长、取表中某个元素、查找某元素在表中的位置、求前驱后继、插入删除元素等。 文件中不仅包含源码 ,还包含一组测试结果。对于刚刚学习数据结构的人是-At VC6.0 environment, using C implementation of the basic operation sequence tables: Create an empty table, the destruction of form, empty
  3. 所属分类:Data structs

    • 发布日期:2017-04-05
    • 文件大小:7.58kb
    • 提供者:shuiyeshan
  1. string

    0下载:
  2. 在VC6.0环境下,用C实现串的基本操作:初始化串、求串长、比较两串大小、测试串是否为空、取子串、统计串中某子串个数等。文件中不仅包含源码 ,还包含一组测试结果。-At VC6.0 environment, using C string realize the basic steps: initialization string, and string length, comparing two strings of size, to test whether the string is emp
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:8.82kb
    • 提供者:shuiyeshan
  1. NerualNetwork

    0下载:
  2. 基于VB编写的神经网络计算,含有测试结果-ANN algorithm
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-16
    • 文件大小:8.57kb
    • 提供者:孔维聪
  1. basic-pso

    2下载:
  2. 基本粒子群算法的matlab实现,粒子群是二维的,其中已给出多个测试函数。-Particle swarm optimization matlab implementation, PSO is a two-dimensional, which has given more than one test function.
  3. 所属分类:matlab例程

    • 发布日期:2017-05-24
    • 文件大小:5.19kb
    • 提供者:伍思敏
  1. IWPA

    2下载:
  2. 灰狼算法的基本算法,详细步骤,有标准函数供测试(Basic algorithm of Grey Wolf algorithm, detailed steps, standard functions for testing)
  3. 所属分类:matlab例程

    • 发布日期:2021-04-22
    • 文件大小:6.1mb
    • 提供者:v2gl
« 12 3 4 5 »
搜珍网 www.dssz.com