DIMACS (.col, .col.b)
背景
-
- DIMACS 图数据格式.
- 常用于图的交换格式.
- 存储单个无向图.
- 纯文本或二进制格式.
- DIMACS 是 Discrete Mathematics and Theoretical Computer Science(离散数学和理论计算科学)的缩写.
- 于 1993 年在罗格斯(Rutgers)大学开发.
Import 与 Export
- Import["file.col"] 给出一个 Graph 对象,代表存储在指定文件中的图.
- Export["file.col",expr] 把表示图的邻接矩阵或边信息导出至 DIMACS 格式.
- Import["file.col"] 从 file 中导入图并以 Graph 形式返回.
- Import["file.col",elem] 从一个 DIMACS 文件中导入指定的参数.
- Import["file.col",{{elem1,elem2,…}}] 导入多个参数.
- 导入格式可以用 Import["file","DIMACS"] 或 Import["file",{"DIMACS",elem,…}] 指定.
- Export["file.col",expr,elem] 通过把 expr 作为指定参数 elem 创建一个 DIMACS 文件.
- Export["file.col",{expr1,expr2,…},{{elem1,elem2,…}}] 把每一个 expri 指定为相应的 elemi.
- Export["file.col",expr,opt1->val1,…] 导出具有指定值的指定选项参数的 expr.
- Export["file.col",{elem1->expr1,elem2->expr2,…},"Rules"] 使用规则指定要导出的参数.
- 请到以下参考页面了解完整的基本信息:
-
Import, Export 从文件导入或导出到文件 CloudImport, CloudExport 从云对象导入或导出到云对象 ImportString, ExportString 从字符串导入或导出到字符串 ImportByteArray, ExportByteArray 从字节数组导入或导出到字节数组
选项
- Import 通用选项:
-
ImageSize Automatic 为图的显示指定图像的整体大小 - Export 选项:
-
BinaryFormat False 是否创建一个二进制 DIMACS 文件 - 当从 DIMACS 导入时,可以给出所有由 Graph 支持的选项. 常用设置包括:
-
EdgeLabels Automatic 边的标签以及标签位置 EdgeWeight Automatic 边的权 VertexCoordinates Automatic 顶点的中心坐标 VertexLabels Automatic 顶点的标签以及标签位置 VertexShape Automatic 顶点的图形形状 - 当以"Graphics"导入时,可以给出所有由 GraphPlot 支持的选项. 常用设置包括:
-
DirectedEdges Automatic 是否显示边为有向箭头 EdgeLabels Automatic 是否包含边的标签 EdgeShapeFunction Automatic 给出边的明确图形的函数 VertexLabels Automatic 是否以标签的形式显示顶点名称 VertexShapeFunction Automatic 给出顶点的明确图形的函数