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

搜索资源列表

  1. 0-1

    0下载:
  2. //产生0-1之间均匀分布一个随机数// /////////////////////////////////////////////////////////////// //传入参数:r--双精度实型变量指针,指向的单元存放随机数种子值//// //传出参数:p:产生0-1之间均匀分布一个随机数 -/ / 0-1 have a uniform distribution between random numbers / / ////////////////////////////////////
  3. 所属分类:数值算法/人工智能

  1. salesman-temp

    0下载:
  2. 货郎担 最短路径问题 用链表储存最短路径节点-traveling salesman problem using the shortest path Listless storage nodes Shortest Path
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:2157
    • 提供者:邵柏波
  1. 分解与合成

    2下载:
  2. 用Matlab中的Haar和Db9小波对图像进行分解和重构,并在不同阈值下用PNG格式存储重构的图像.-Matlab Haar and the right image Db9 wavelet decomposition and reconstruction, and under different thresholds with PNG format image storage remodeling.
  3. 所属分类:matlab例程

    • 发布日期:2008-10-13
    • 文件大小:34213
    • 提供者:昂清
  1. 数据结构的稀疏矩阵运算器

    1下载:
  2. 利用十字链表的储存结构完成距阵的加,减,乘.数据结构实习题目,已完成选做内容.-use the storage structure to complete the matrix, plus or minus, riding. Internship topic data structure, so as to complete the election.
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:24832
    • 提供者:陈大民
  1. 变长记录存取类库

    0下载:
  2. 数据结构大作业——变长记录文件存取类库 设计一个类库,支持对变长记录文件的存贮、插入、删除、查找、修改等功能。-large data structure operations -- variable length records file access library design a class library, support for variable-length records document storage, insert, delete, search, modify fun
  3. 所属分类:数值算法/人工智能

    • 发布日期:2008-10-13
    • 文件大小:15262
    • 提供者:冯昊飞
  1. 字符频率统计

    0下载:
  2. 字符频度统计,采用Hash表即链表数组作为存储结构,是hash表的简单运用,还包括一定的文件操作-characters frequency statistics, the use of Hash Tables List that as a storage array structure, hash table is a simple application, but also some file manipulation
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:13140
    • 提供者:李鹏
  1. Storage-

    0下载:
  2. 该文件为链式储存结构的实验,文件包含了实验报告和代码,其中内容包括了线性表的链式结构的定义,链接存储结构结点的访问方法吗,栈的链式存储结构实现,链式存储结构的队列的特点与实现;栈和队列的简单应用; -Experimental chain storage structure of the file, the file contains the lab reports and code, which includes the definition of the linear chain stru
  3. 所属分类:Data structs

    • 发布日期:2017-04-02
    • 文件大小:109205
    • 提供者:黎明
  1. 5177

    0下载:
  2. 智能冷库技术,自动调节温度和湿度,包括论文和源程序代码。-Intelligent Cold Storage technology, automatically adjust the temperature and humidity, including the papers and source code.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-17
    • 文件大小:506826
    • 提供者:白海阔
  1. dual_core

    0下载:
  2. This example application shows you how to use Real-Time Workshop Embedded Coder to target a dual core Blackfin microprocessor. The complete build is managed by a template makefile and control over the memory regions is provided by custom storage clas
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-16
    • 文件大小:267348
    • 提供者:namedd
  1. BPNN

    1下载:
  2. 人工神经网络就是模拟人思维的第二种方式。这是一个非线性动力学系统,其特色在于信息的分布式存储和并行协同处理。虽然单个神经元的结构极其简单,功能有限,但大量神经元构成的网络系统所能实现的行为却是极其丰富多彩的。 -Simulation of artificial neural network is a second way of human thinking. This is a nonlinear dynamic system, which features a distributed i
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-28
    • 文件大小:5289
    • 提供者:prince
  1. Performance

    0下载:
  2. these are the important ieee papers of bidirectional dc dc converter for reneweble energy storage systems
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:779444
    • 提供者:ASHOK KUMAR
  1. network-storage-and-clound-computing

    0下载:
  2. 介绍云计算与云存储,简述云存储运用实例,对比分析云存储搭建架构,展现云计算与云存储应用现状,为建立云存储提供帮助-Introduction cloud computing and cloud storage, cloud storage application of brief examples, comparative analysis of architecture cloud storage structures, to show cloud computing and cloud sto
  3. 所属分类:matlab

    • 发布日期:2017-03-30
    • 文件大小:340666
    • 提供者:杨晓民
  1. Storage-space-allocation

    0下载:
  2. 利用随机数模拟的有效地址系列,范围是0~32K; 分别读出地址系列中的地址: 1)每读出一个地址,先计算该地址的页号(页号=INT[虚地址/页面大小]); 2)然后在页表PT中查访该页的状态; 3)若为“1”,表示在内存,无须作其它处理; 4)若为“0”,表示不在内存,则需要查MBT表,看是否还有可提供分配的空白块; 5)若内存有空白块,则修改PT表中的该页的状态项,并记录分配到的内存块号,同时修改MBT表; 6)若内存无空白块,则根据某个算法从内存中挑
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-08
    • 文件大小:68944
    • 提供者:mier芊
  1. Storage-structure

    0下载:
  2. 存储类型的转换,如果你输入一个以邻接表作为存储方式的数据信息是,通过此系统可以转换为一邻接矩阵的形式存储信息-Storage structure
  3. 所属分类:Data structs

    • 发布日期:2017-04-06
    • 文件大小:533735
    • 提供者:小强
  1. Link-storage-

    0下载:
  2. 该文件为线性表的链接存储结构实现的实验指导报告,你可以了解掌握线性表的链式结构的定义,掌握链接存储结构结点的访问方法以及链表的基本操作 -Experimental guidance report files link storage structure for the linear table, you can understand the definition of the linear chain structure of the table, grasp the basic opera
  3. 所属分类:Data structs

    • 发布日期:2017-04-23
    • 文件大小:15077
    • 提供者:黎明
  1. 4-Profile-Storage

    1下载:
  2. using L in profile storage. We may solve Ly  b accessing L by row and either LTx  y accesing LT by column or equivalently xTL  yT accessing L by row-using L in profile storage. We may solve Ly  b accessing L by row and
  3. 所属分类:matlab

    • 发布日期:2015-02-19
    • 文件大小:48128
    • 提供者:Kaissoun
  1. Adjacency-table-storage

    0下载:
  2. 四种图:无向图,有向图,无向网,有向网的邻接表存储-Four kinds Figure: undirected graph, directed graph, undirected network, the network has adjacency table storage
  3. 所属分类:Data structs

    • 发布日期:2017-04-25
    • 文件大小:85567
    • 提供者:崔凡凡
  1. storage-battery

    2下载:
  2. 这是matlab的simulink仿真搭建的蓄电池储能优化建模-storage battery optimization
  3. 所属分类:matlab

    • 发布日期:2015-04-19
    • 文件大小:10240
    • 提供者:李峰
  1. Storage-of-Graphs

    0下载:
  2. 利用图存储拓扑结构,当用户从键盘输入任意课程的编号时,可打印出该课程的所有的前序课程。非常好用哦-FIG storage topology, when users enter any number of courses the keyboard, you can print out all of the preamble of the course curriculum. Oh, very useful
  3. 所属分类:Data structs

    • 发布日期:2017-04-30
    • 文件大小:41411
    • 提供者:张小爽
  1. WindReliability

    2下载:
  2. 计及储能的风电系统系统风险评估,参数齐全可直接使用(Risk assessment of wind power system considering energy storage)
  3. 所属分类:matlab例程

    • 发布日期:2019-04-17
    • 文件大小:24576
    • 提供者:
« 12 3 4 5 6 7 8 9 10 ... 50 »
搜珍网 www.dssz.com