separates(RBGL)
separates()所属R语言包:RBGL
A function to test whether a subset of nodes separates
函数来测试是否节点的一个子集分离
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function tests to see whether a set of nodes, S1, separates all nodes in a from all nodes in b.
功能测试,看看是否一组节点,S1,ab的所有节点的所有节点分离。
用法----------Usage----------
separates(a, b, S1, g)
参数----------Arguments----------
参数:a
The names of the nodes in the from set.
集节点的名称。
参数:b
The names of the nodes in the to set.
在设置节点的名称。
参数:S1
The names of the nodes in the separation set.
分离集的节点的名称。
参数:g
An instance of the graph class. All nodes named in the other arguments must be nodes of this graph.
graph类的一个实例。在其他参数的名字命名的所有节点都必须是此图的节点。
Details
详情----------Details----------
The algorithm is quite simple. A subgraph is created by removing the nodes named in S1 from g. Then all paths between elements of a to elements of b are tested for. If any path exists the function returns FALSE, otherwise it returns TRUE.
该算法是相当简单的。一个子创建移除S1从g命名的节点。然后ab测试的元素,元素之间的所有路径。如果存在任何路径函数返回FALSE,否则返回TRUE。
值----------Value----------
Either TRUE or FALSE depending on whether S1 separates a from b in g1.
要么TRUE或FALSE取决于是否S1分离abg1。
作者(S)----------Author(s)----------
R. Gentleman
参考文献----------References----------
<h3>See Also</h3>
举例----------Examples----------
con <- file(system.file("XML/kmstEx.gxl",package="RBGL"))
km <- fromGXL(con)
close(con)
separates("B", "A", "E", km)
separates("B", "A", "C", km)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|