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

搜索资源列表

  1. psoshj

    0下载:
  2. pos算法,微粒群优化算法解决函数优化问题,程序就是解决函数优化问题。-pos algorithm, particle swarm optimization algorithm to solve the function optimization problem, the procedure is to solve function optimization problems.
  3. 所属分类:matlab

    • 发布日期:2017-04-13
    • 文件大小:1539
    • 提供者:吴海东
  1. POS

    0下载:
  2. 使用C++编写的粒子群算法,比较简单,适合初学者-Use C++ prepared particle swarm algorithm is relatively simple, suitable for beginners
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-25
    • 文件大小:263836
    • 提供者:成晓东
  1. matlab

    0下载:
  2. 介绍了pos的工具箱的使用和代码,只需要编写自己所需要优化的主程序,就可以使用-Describes the use of pos toolbox and code, you only need to write your own need to optimize the main program, you can use
  3. 所属分类:matlab

    • 发布日期:2017-05-19
    • 文件大小:5604336
    • 提供者:宁有名
  1. CHP

    1下载:
  2. optimal placement of CHP (combined heat and power) init in a university using POS algorithm.
  3. 所属分类:matlab

    • 发布日期:2017-04-15
    • 文件大小:5663
    • 提供者:shahrouz
  1. POS-code

    0下载:
  2. 粒子群算法的具体代码,简单易行非常好用,放在word中,复制出来可直接使用-PSO algorithm specific code is very simple to use, on the word, copy it can be used directly
  3. 所属分类:matlab

    • 发布日期:2017-04-25
    • 文件大小:19373
    • 提供者:蒋洁
  1. 4.2

    0下载:
  2. 编写算法,在串的堆存储机构上实现串的插入操作StrInsert(&S,pos,T)和串的删除操作StrDelete(&S,pos,len)。-Write algorithm, string on the string heap storage mechanism inserts StrInsert (& S, pos, T) and serial deletion StrDelete (& S, pos, len).
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1790
    • 提供者:hiccup
  1. HmmPos

    0下载:
  2. 基于HMM的中文词性标注代码,内有详细注释,并附有练习样本-Chinese POS tagging HMM-based code, with detailed notes, along with sample exercises
  3. 所属分类:Algorithm

    • 发布日期:2017-05-11
    • 文件大小:2372943
    • 提供者:王代码
  1. pso_main

    0下载:
  2. 粒子束算法 matlab 站长把时间都花-pos matlab calculator 容说明(至少要20个字)。尽量不要让站长把时间都花费在为您修正说
  3. 所属分类:Algorithm

    • 发布日期:2017-04-14
    • 文件大小:2846
    • 提供者:李章义
  1. POS

    0下载:
  2. 粒子群算法(PSO)属于进化算法的一种,和模拟退火算法相似,它也是从随机解出发,通过迭代寻找最优解,它也是通过适应度来评价解的品质,但它比遗传算法规则更为简单,它没有遗传算法的“交叉”(Crossover) 和“变异”(Mutation) 操作,它通过追随当前搜索到的最优值来寻找全局最优。这种算法以其实现容易、精度高、收敛快等优点引起了学术界的重视,并且在解决实际问题中展示了其优越性。粒子群算法是一种并行算法。该程序适用于MATLAB中粒子群算法的实现。- Similar to the on
  3. 所属分类:matlab

    • 发布日期:2017-04-12
    • 文件大小:524
    • 提供者:原文宾
  1. pos

    0下载:
  2. 基于MATLAB的带压缩系数的多目标粒子群优化算法,不同于基本多目标粒子群算法带有权重系数,其鲁棒性和收敛性更好-Multi-objective optimization algorithm based on particle swarm MATLAB with the compression factor, unlike the basic multi-objective Particle Swarm Optimization with the weight coefficients, its
  3. 所属分类:matlab

    • 发布日期:2017-04-15
    • 文件大小:6954
    • 提供者:yongan
  1. code

    1下载:
  2. 粒子群搜索算法关于税收最优分配数学建模求解-the pos method about the distibution of the tax in the mathmatic model
  3. 所属分类:matlab

    • 发布日期:2016-12-22
    • 文件大小:31744
    • 提供者:yxf
  1. HMM-POS-master

    0下载:
  2. this code is about hmm matlab
  3. 所属分类:matlab

    • 发布日期:2017-05-20
    • 文件大小:5387782
    • 提供者:fafa
  1. pos

    2下载:
  2. 改进后的粒子群算法,可用于求解规划问题,路径问题和相关多目标组合优化问题-The improved particle swarm optimization (pso) algorithm, can be used to solve the planning problem, the routing problem and the relevant multi-objective combinatorial optimization problem
  3. 所属分类:Algorithm

    • 发布日期:2017-05-05
    • 文件大小:47482
    • 提供者:小六
  1. CPP

    0下载:
  2. 10.编写一个程序,从键盘输入一批学生的成绩信息,每个学生的成绩信息包括:学号、姓名以及8门课的成绩。然后按照平均成绩由高到低顺序输出学生的学号、姓名以及平均成绩。 11.把在链表中插入一个新结点的操作写成一个函数: bool insert(Node *&h,int a,int pos) 其中,h为表头指针,a为要插入的结点的值,pos(≥0)表示插入位置。当pos为0时表示在表头插入;否则,表示在第pos个结点的后面插入。操作成功返回true,否则返回false。 12.把在
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3563
    • 提供者:xing
  1. 洛伦兹gui文件

    0下载:
  2. 世界上研究?广泛的常?分方程|是Lorenz混沌吸引子。该方程在1963年由M.I.T.数学家和气象学家Edward Lorenz提出,Edward Lorenz的研究兴趣主?在用6体运动模型描述地球空气运动。该文件为洛伦兹吸引子matlab程序以及相关文档说明。(function lorenzgui if ~isequal(get(gcf,'name'),'Lorenz Gui') rhos = [28 99.65 100.5 160 350]; shg clf reset
  3. 所属分类:matlab例程

  1. sahin2011

    0下载:
  2. s spreading all over the world, resulting in huge financial losses. Though fraud prevention mechanisms such as CHIP&PIN are developed, these mechanisms do not prevent the most common fraud types such as fraudulent credit card usages over virt
  3. 所属分类:matlab例程

    • 发布日期:2017-12-19
    • 文件大小:235520
    • 提供者:phdscolar
  1. chapter3

    0下载:
  2. 遗传算法,粒子群算法优化bp神经网络并预测()
  3. 所属分类:matlab例程

    • 发布日期:2018-04-22
    • 文件大小:53248
    • 提供者:`lili
  1. psoSphere

    0下载:
  2. pos算法是一种智能算法,具有很好的收敛特性,且能够很好的对问题进行优化,从而获得良好的计算结果。(The pos algorithm is an intelligent algorithm, has good convergence characteristics, and can be a good optimization of the problem, so as to obtain good calculation results.)
  3. 所属分类:人工智能/神经网络/深度学习

    • 发布日期:2018-05-06
    • 文件大小:1024
    • 提供者:吵吵41
  1. 多目标粒子群算法

    2下载:
  2. 利用粒子群算法求解函数的极值,用于多目标模型优化(Solving the extreme value of a function using particle swarm optimization algorithm for multi-objective model optimization)
  3. 所属分类:数值算法/人工智能

    • 发布日期:2020-11-03
    • 文件大小:3072
    • 提供者:ghjbky
  1. POS

    2下载:
  2. 风光混合储能的生命周期费用考虑包括蓄电池、超级电容器的生命周期费用,(Life cycle cost considerations for landscape hybrid energy storage include life cycle costs for batteries and supercapacitors.)
  3. 所属分类:matlab例程

    • 发布日期:2020-11-13
    • 文件大小:19415040
    • 提供者:ZWQ_apple
« 1 2 3 4»
搜珍网 www.dssz.com