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

搜索资源列表

  1. face-recognition-based-on-pca

    0下载:
  2. 基于主成分分析的人脸识别,用主成分分析提前特征,用模版匹配进行分类-face recognition based on PCA
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-25
    • 文件大小:179689
    • 提供者:nihai
  1. c5

    0下载:
  2. 利用模版实现C++堆栈的操作。实现不同类型数字栈的入栈出栈操作。-Use the template to achieve the operation of the C++ stack. Different types of digital stack stack stack operation.
  3. 所属分类:ELanguage

    • 发布日期:2017-04-10
    • 文件大小:699
    • 提供者:wam
  1. GM

    0下载:
  2. matlab灰色预测的通用算法程序,很好的套用模版-universal algorithm for Matlab gray prediction procedure, apply the template
  3. 所属分类:matlab

    • 发布日期:2017-04-06
    • 文件大小:527
    • 提供者:李航
  1. SA0-1

    0下载:
  2. 模拟退火解决0—1背包问题,很好的套用模版-Simulated annealing to solve the 0-1 knapsack problem, apply the template
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-11
    • 文件大小:844
    • 提供者:李航
  1. The-various-algorithms-Template

    0下载:
  2. 各种算法模版,代码集,回溯搜路径,数据结构,ICPC/ACM-Templates of various algorithms, code set, backtracking search path, data structures, ICPC/ACM
  3. 所属分类:Algorithm

    • 发布日期:2017-11-15
    • 文件大小:156485
    • 提供者:全瑞文
  1. Queen

    0下载:
  2. 解决八皇后问题,输出所有可能的情况。本代码应用函数模版-Solve the eight queens problem, the output of all possible situations. The application of the code function template
  3. 所属分类:Data structs

    • 发布日期:2017-11-21
    • 文件大小:5893339
    • 提供者:贺俊杰
  1. gaosixiaoyuan_moban

    0下载:
  2. 高斯消元的模版,很全面。 高斯消元是很基本的代码,这里包括了判断是否有解,有多少的自由元和求每个元的值。-Gaussian elimination template, very comprehensive. Gaussian elimination is very basic code included here to determine whether a solution, how much freedom yuan and seek the value of each element.
  3. 所属分类:Algorithm

    • 发布日期:2017-11-18
    • 文件大小:2132
    • 提供者:star
  1. hw1-joseph

    0下载:
  2. c++数据结构中处理约瑟夫环问题源码,使用模版编写链表。配套清华版数据结构图书。-c++ data structure in processing Josephus source, use the template to write a linked list. Supporting Tsinghua version data structure books.
  3. 所属分类:Data structs

    • 发布日期:2017-11-28
    • 文件大小:173830
    • 提供者:秦泽宇
  1. News-system

    0下载:
  2. 登录,管理页面,用户页面,教师页面,模版页面,还有其他的 一些功能。-Login, management page, user page, Faculty page, template page, there are a number of other functions.
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-12-08
    • 文件大小:7425350
    • 提供者:雷蒙斯
  1. Qsort1

    0下载:
  2. Qsort 大家熟知的算法,仔细整理出的模版,直接可用-Qsort well-known algorithm, carefully sorted out the template, can be used directly
  3. 所属分类:Data structs

    • 发布日期:2017-12-09
    • 文件大小:1750
    • 提供者:liming
  1. zhiliudiandongjijixietexin

    0下载:
  2. 直流电动机机械特性仿真m文件,功能很好的模版,只要填入你的数据,就可以用了-motor character simulink
  3. 所属分类:matlab

    • 发布日期:2017-11-13
    • 文件大小:943
    • 提供者:applejkj
  1. dtw

    0下载:
  2. 用matlab实现特定人的单个词识别,采用dtw算法,主要用到了语音端点检测、语音分帧、梅尔倒谱系数等,文件中含有0-9个输入模版语音,作为参考模版信号。-Using matlab to achieve a specific person single word recognition, using dtw algorithm, mainly used in the voice activity detection, voice sub-frame, Mel Cepstral, etc., do
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:806560
    • 提供者:ruanxioafei
  1. matrix

    0下载:
  2. 模版矩阵类,包括常用的计算和操作,解方程用的高斯消元,常规的LU分解,只是功能尚未完善,待续-Template matrix class, including the commonly used calculations and operations, solving equations using Gaussian elimination, LU decomposition routine, but function is not perfect, to be continued ......
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:4995
    • 提供者:将建军
  1. DTW

    0下载:
  2. DTW算法的程序,申请两个n*m的矩阵D、d,分别为累积距离和帧匹配距离。这里n和m为测试模版与参考模版的帧数。然后通过一个循环计算两个模版的帧匹配距离d。接下来进行动态规划,为每个格点 (i,j)都计算其三个可能的前续格点的累积距离D1,D2,D3。考虑到边界问题,有些前续格点可能不存在,因此加入一些判断条件最后利用最小值函数min(),找到三个前续格点的累积 距离作为累积距离,与当前帧的匹配距离d(i,j)相加,作为当前格点的累积距离。该计算过程一直达到格点(n,m),并将D(n,m)输出,
  3. 所属分类:matlab

    • 发布日期:2017-04-11
    • 文件大小:1097
    • 提供者:韦卫
  1. JOBSHOP-Schedule-BY-GA

    0下载:
  2. c++ 车间调度遗传算法源码,方便使用。通用模版,修改参数和输入即可使用。-jobshop schedule BY GA
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-16
    • 文件大小:9157
    • 提供者:JaySun
  1. 5x5nevitia

    0下载:
  2. 在MATLAB环境下,对5*5的Nevitia算子模版进行实现,对图像的边缘进行提取。-In the MATLAB environment, the Nevitia operator templates in 5*5 to achieve, on the image edge extraction.
  3. 所属分类:matlab

    • 发布日期:2017-04-12
    • 文件大小:864
    • 提供者:官会凯
  1. ANSYS-secondary-

    1下载:
  2. 提供五种自编ansys二次开发的源代码,通过UPFs编译连接即可使用,为有意向进行ansys二次开发的朋友提供模版!-Offers five self ansys secondary development of the source code, compiled by UPFs connection can be used, for the intention to be a friend to provide secondary development ansys templates!
  3. 所属分类:Algorithm

    • 发布日期:2017-04-15
    • 文件大小:7138
    • 提供者:苗克军
  1. CPP_Link_Queue_Template

    0下载:
  2. 用C++编写的队列是用链表实现的一个模版,用VS2012可以直接运行-Written by C++ queue is implemented using a template list, you can directly run by VS2012
  3. 所属分类:Data structs

    • 发布日期:2017-05-11
    • 文件大小:2690820
    • 提供者:阿桑
  1. 10.22

    0下载:
  2. C++实现链式数据结构,动态数组 栈 队列,用的迭代器,模版-C++ implementation of linked data structures, dynamic array stack queue, use iterators, template
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:391473
    • 提供者:aishang
  1. TSP

    0下载:
  2. TSP 旅行商模版 TSP 旅行商模版-TSP TSP templateTSP TSP templateTSP TSP template
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-04-12
    • 文件大小:698
    • 提供者:石飞达
« 1 2 3 45 »
搜珍网 www.dssz.com