is.triangulated(RBGL)
is.triangulated()所属R语言包:RBGL
Decide if a graph is triangulated
决定如果一个图是三角
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Decide if a graph is triangulated
决定如果一个图是三角
用法----------Usage----------
is.triangulated(g)
参数----------Arguments----------
参数:g
an instance of the graph class
graph类的一个实例
Details
详情----------Details----------
An undirected graph G = (V, E) is triangulated (i.e. chordal) if all cycles [v1, v2, ..., vk] of length 4 or more have a chord, i.e., an edge [vi, vj] with j != i +/- 1 (mod k)
一个无向图G J =(V,E)三角(即弦)如果所有周期[V1,V2,...,VK]长度为4个或更多的边缘有一个和弦,即VI,VJ] != I + / - 1(模k)
An equivalent definition of chordal graphs is:
弦图的等价定义是:
G is chordal iff either G is an empty graph, or there is an v in V such that
G是弦IFF要么G是一个空的图,或有一个至五这样,在V
the neighborhood of v (i.e., v and its adjacent nodes) forms a clique, and
附近的V(即V和其相邻节点)形成了一个集团,和
recursively, G-v is chordal
递归,G-V是弦
值----------Value----------
The return value is TRUE if g is triangulated and FALSE otherwise. An error is thrown if the graph is not undirected; you might use ugraph to compute the underlying graph.
返回值是TRUE如果g三角FALSE否则。会抛出错误,如果是不无向图,你可以使用ugraph来计算的基本图形。
作者(S)----------Author(s)----------
Li Long <li.long@isb-sib.ch>
参考文献----------References----------
举例----------Examples----------
con1 <- file(system.file("XML/conn.gxl",package="RBGL"), open="r")
coex <- fromGXL(con1)
close(con1)
is.triangulated(coex)
con2 <- file(system.file("XML/hcs.gxl",package="RBGL"), open="r")
coex <- fromGXL(con2)
close(con2)
is.triangulated(coex)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|