CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - Random Processes

搜索资源列表

  1. Process_Thread

    1下载:
  2. 分别用多进程和多线程对给定的1000000个无序的随即数进行排序,并写入指定文件中,非常适合于初学者进行windows操作系统内核试验。-were using multiple processes and multi-threaded right to the one million disorderly conduct random number sequencing and writes designated document, very suitable for beginners in
  3. 所属分类:Windows编程

    • 发布日期:2008-10-13
    • 文件大小:6321101
    • 提供者:鲁家君
  1. 模拟进程利用双向邮箱通信

    0下载:
  2. 模拟进程利用双向邮箱通信 随机生成一个邮箱,两个进程利用该邮箱相互通信,信息的大小与邮箱的大小相同。哪一个进程为发送进程,哪一个进程为接收进程是随机的,由随机函数随机选择。但是若一进程成为发送进程,那么另一个进程只能是接收进程。如果没有申请到资源,就不能建立邮箱,发送进程不能发送消息。如果邮箱中没有空闲单元,发送进程不能够发送消息;如果邮箱中没有消息,接收进程不能够接收消息。-modeling process using two-way communications mail generates
  3. 所属分类:文件操作

    • 发布日期:2008-10-13
    • 文件大小:1305
    • 提供者:haha
  1. moniduanshicunchuguanli

    0下载:
  2. 1采用段式管理方案实施内存分配和回收。能够处理以下的情形 ⑴ 随机确定内存大小,进程的个数,每个进程的段数及段大小; ⑵ 要求当某进程提出申请空间的大小后,显示能否满足申请,以及为该进程分配资源后有关内存空间使用的数据(注意回收后的合并)。-Segment management programs using a memory allocation and recovery implementation. Able to handle the case of the following
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-16
    • 文件大小:66301
    • 提供者:鱼儿
  1. lab01_rp

    0下载:
  2. simulation for random processes, including histogram of cumulative probability function, conditional probability, random walk process and damped walk process.
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-30
    • 文件大小:5174
    • 提供者:binbin
  1. create_progress

    0下载:
  2. 进程状态有5种: e -执行态 r -高就绪态 t -低就绪态 w -等待态 c -完成态。初始每个进程均为高就绪状态,如果时间片到则转为低就绪状态。 系统分时执行各进程,规定三个进程的执行概率均为33 。通过产生随机数x来模拟时间片。若各进程的执行时间片到限,产生“时间片中断”而转入低就绪状态。 进程调度算法采用剥夺式调度算法。每次总是选择优先数最小(优先级别最高)的就绪进程投入执行。//先从 r 状态进程中选择,再从 t 状态进程中选择。 进程0完成5次计算:s1++ s2++
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-02
    • 文件大小:37158
    • 提供者:jlliu
  1. stochastic_processes

    0下载:
  2. 这是一本关于随机过程的书,主要介绍了多种过程及其应用-This is a book about the random process, introduces a variety of processes and their applications
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-22
    • 文件大小:6807517
    • 提供者:Xi Yang
  1. random_name_system

    0下载:
  2. 实现课堂随机点名系统……线程和进程的知识-Random name system to achieve the classroom ... ... knowledge of threads and processes
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-31
    • 文件大小:6881
    • 提供者:孙玉彬
  1. LivingMachinesUseofGeneticalAlgorithms

    0下载:
  2. Genetic Algorithms (GAs) are adaptive heuristic search algorithm premised on the evolutionary ideas of natural selection and genetic. The basic concept of GAs is designed to simulate processes in natural system necessary for evolution, specifically t
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:152217
    • 提供者:raj
  1. stochastic

    0下载:
  2. Several matlab Mfiles for the simulation of stochastic processes in finance and engineering, wienner, random walk, brownian motion, two gamble etc. in addition ot solution to forward and backward Chapmann-Kolmogorov equation-Several matlab Mfiles for
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:52326
    • 提供者:sina
  1. yinhangmoni

    2下载:
  2. 这是一个简单的银行模拟系统 1、 客户的到达时间随机 2、 客户需要处理的业务随机(不同业务处理的平均长度不同,例如:取款时间较短,开户和销户时间较长) 3、 处理客户业务所需时间随机(在一定范围内) 4、 使用文本文件记录每个客户到达时间、业务处理时间、业务结束时间 5、 动态显示(刷新时间可调)目前每个窗口累计处理客户数量、等待人数,每个窗口的平均业务处理时间,不同业务类型业务的累计办理量。 -This is a simple bank simulation syst
  3. 所属分类:Console

    • 发布日期:2016-06-10
    • 文件大小:3072
    • 提供者:duanzhensheng
  1. Producers-and-consumers

    1下载:
  2. 多进程/ 线程编程:生产者 - 消费者问题。 1,设置两类进程/ 线程,一类为生产者,一类为消费者; 2,建立缓冲区的数据结构; 3,随机启动生产者或消费者; 4,显示缓冲区状况; 5,随着进程/ 线程每次操作缓冲区,更新显示;-Multi-process/thread programming: producer- consumer issues. 1, set two types of processes/threads, one for producers, a cla
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-08
    • 文件大小:2597
    • 提供者:刘禹
  1. zhe-reader-zhe-writer

    1下载:
  2. 多进程/线程编程:读者-写者问题。      1,设置两类进程/线程,一类为读者,一类为写者;   2,随机启动读者或写者;  3,显示读者或写者执行状态;  4,随着进程/线程的执行,更新显示;  -Multi-process/thread programming: Readers- write the problem. 1, set two types of processes/threads, o
  3. 所属分类:Process-Thread

    • 发布日期:2017-03-30
    • 文件大小:13619
    • 提供者:刘禹
  1. Stochastic-processes

    0下载:
  2. 基于MFC开发环境实现的一个随机过程实验,用于统计随机签名模式遍历比率的一个程序。用到了计时功能,绘图功能以及对话框弹出功能-MFC-based development environment to achieve a random process experiments for statistical random signature pattern traverse rate of a program. Used a timing function, graphics capabilitie
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-28
    • 文件大小:11370795
    • 提供者:
  1. randproc

    0下载:
  2. 随机过程实验,生成各种随机数,均匀分布,正态分布,指数分布,泊松分布-Stochastic Processes experiment, generate a variety of random numbers, uniform, normal, exponential distribution, the Poisson distribution
  3. 所属分类:Other systems

    • 发布日期:2017-05-18
    • 文件大小:4686313
    • 提供者:zhouying
  1. GenerateMobileModel

    0下载:
  2. 本程序主要通过管道实现两个进程间的通信。主要功能是一个进程从手机机型文件中随机读取一个机型,然后通过管道传给另一个进程。-The program is mainly for communication between two processes through the pipeline. The main feature is a random process model reads a file the phone model, and then passed to another proc
  3. 所属分类:Process-Thread

    • 发布日期:2017-04-25
    • 文件大小:317211
    • 提供者:river
  1. ProcessesFinance

    1下载:
  2. Discrete-time models: random walk, ARMA, fractional integration, GARCH). Continuous-time counterparts: Levy processes, Ornstein-Uhlenbeck, fractional Brownian motion, stochastic volatility, subordination.
  3. 所属分类:Other systems

    • 发布日期:2017-05-18
    • 文件大小:4913719
    • 提供者:Kevin
搜珍网 www.dssz.com