1)stochastic competitive model随机竞争模型
英文短句/例句
1.Survival Analysis of Stochastic Competitive Model in Polluted Environment and Stochastic Competitive Exclusion Principle污染环境中随机竞争模型生存分析和随机竞争排斥原理
2.The Asymptotic Behavior of the Stochastic Gilpin-Ayala Competition Models;随机Gilpin-Ayala竞争模型的渐近性质
3.The Estimation and Simulation of the Random Model for the Longitudinal Duration Data under Competing Risks竞争风险下纵列持续数据随机效应模型的估计与模拟研究
4.Research on Robust Stochastic Optimization of Multi-Retailers Competition under Demand Uncertainty;需求不确定环境下多个零售商竞争的鲁棒随机优化模型
5.Stochastic R&D Contest Model and Optimal Numbers of Contestants;随机R&D竞赛模型及最优参与人选择
6.The Competition and Threshold Property between Two Polarization States in Two-Dimensional Random Medium二维随机介质中偏振模式的竞争和阈值特性
7.Research on the Formation Mechanism and Transformation Model of Knowledge Competiveness;知识竞争力形成机理及转化模型研究
8.Diamond Model of Competitive Advantage of Industrial Cluster:Structure and Mechanism产业集群竞争优势的菱形模型:结构和机理
9.The Analysis of Pricing Model of Investment Opportunity under Competition;竞争环境下投资机会价值的定价模型分析
10.Mode of Virtual Cooperative Competition:Study on Its Mechanism,Systemic Model and Empirical;虚拟合作竞争:机理、系统模型及实证研究
11.Analysis on the Key Institutions of Process Models of the Competitive Intelligence企业竞争情报过程模型的关键机制分析
12.The Open Access Model and Roles Control Mechanism of Competitive Intelligence竞争情报的开放存取模型与角色控制机制
13.dynamic model of competitive equilibrium竞争性平衡的动态模型;竞争性平衡的动态模型
14.Research on the Pricing Pattern of Leader-follower Based on Time Series Analysis;对价格领导者-跟随者竞争模式的研究
15.Application of Porter s Competition Model in the Studying to the Structure of Competition in the Knowledge Industry;知识产业竞争结构研究中波特竞争模型的应用
16.Research on Local University s Core Competitive Ability Based on Competition Model;基于波特竞争模型的地方高校核心竞争力研究
17.Analysis of Firm Competitors Based on the Comprehensive Evaluation Module for Firm Competitive Strength;基于企业竞争力综合评价模型的竞争对手分析
18.Identifying the Core Competitive Power of Company Based on the Model of Product Population Competition;基于产品种群竞争模型的企业核心竞争力识别
相关短句/例句
Gilpin-Ayala competition models随机Gilpin-Ayala竞争模型
3)random competition随机竞争
1.A new routing detection method is introduced based on random competition,which reduces the cost of routing discovery.协议采用单播和广播相结合的礼花式广播来减少系统开销,以随机竞争方式探测路由,减少寻找新路由的代价。
4)intervening opportunities model竞争机会模型
1.The differences of trip distribution between passenger flow and cargo flow are also analysed,then,a practical intervening opportunities model which is suitable for predicting cargo trip distribution is given.并通过货流分布规律的研究,提出了货流分布的竞争机会模型。
5)competition model竞争模型
1.The bifurcation and stability of a kind of competition model;一类竞争模型正解的分歧与稳定性
2.Global stability of a positive equilibrium point on two-species competition model两种群竞争模型正平衡点的全局稳定性
3.According to the main factors impacting the port competitive power and the port competitive features within the region under the comprehensive transportation system, the paper establishes a regional port competition model based on transportation integration, makes a sensitive analysis on the inherent factors that impact the competitive power.考虑了货源分布参数、道路运输成本、港口装卸效率、船舶停泊成本等影响港口竞争能力的主要因素,根据综合运输体系下区域内港口竞争的特点,建立了基于交通一体化的区域港口竞争模型。
6)competitive model竞争模型
1.The fatigue damage competitive model under corrosive environment;腐蚀环境下LC4铝合金疲劳累积损伤的竞争模型
2.Existence of periodic solutions of Schoner competitive model with time-lag;时滞Schoner竞争模型周期解的存在性
3.Existence of positive solutions for a kind of strongly coupled competitive model一类强耦合竞争模型正解的存在性
延伸阅读
随机存取机器模型 算法分析与计算复杂性理论中重要的串行计算模型,简称 RAM。引进它是为了便于从理论上分析计算机串行程序所耗费的时间、空间等资源。一个RAM由k个变址器I1,I2,...,Ik、无穷个普通寄存器R0,R1,R2,...和一个有穷长的程序所组成。变址器也是寄存器,每个寄存器中可以存放一个自然数,但只有变址器的内容可以作为间接地址。 RAM的程序使用两种形式的地址。一种是直接地址,形式为Ij(j=1,2,...,k)或Ri(i=0,1,2,...);另一种是间接地址,形式为Ij(j=1,2,...,k)。如果Ij中存的自然数为i,则Ij代表地址Ri。 RAM的指令为下列形式之一:①A←a,表示把地址A的内容改为自然数a;②A←B,表示把地址A的内容改为地址B的内容;③A←B*C,表示把地址B中的内容和地址C中的内容作为运算*之后,送入地址A。这里*可以是自然数的加法、减法、乘法或整数除法。减法的定义为:若a≥b则等于a-b,否则等于0;④A←F(B,C),此处F是一个可以用多带图灵机器在多项式空间和对数多项式的巡回中实现的变换(见多带图灵机模型)。A、B、C可以是直接地址,也可以是间接地址。A是写入地址,B、C是读出地址。 RAM除了可以用以上的指令编程序外,还可以判断某个寄存器或变址器的内容是否为0,以实现条件转移。 变址器是用来实现间接地址的,所以要求在运算过程中变址器中所存的自然数不大于所用到的普通寄存器数目的某个常数倍。 RAM程序的一个例子是:设n个自然数a1,a2,...,an分别存放在R1,R2,...,Rn中,n存放在R0中,要求把这n个数的和计算出来,结果放在R0中。程序如图。 RAM的资源耗费有两种定义方式,即均匀耗费和对数耗费。均匀的空间耗费是指计算中曾经使用过的寄存器的总数。均匀的时间耗费是指自始至终被执行的指令和转移的总条数。均匀耗费常用于算法分析中。 另一种标准是对数耗费。此时空间耗费指计算中普通寄存器存过的自然数的最大长度之和。时间耗费则指被执行的每条指令的时间耗费之和。而一条指令的时间耗费则被认为与被运算的自然数的长度成正比的。 对于RAM,还可以定义巡回(虚拟的并行时间)。它是计算中周相的总数,而一个周相则是 RAM工作的一个阶段,在此阶段中,没有任何一个普通寄存器先被写入然后又被读出。
