ngraph.matrix:将 ngraph.graph 转换为矩阵表示的模块

时间:2024-07-11 13:52:57
【文件属性】:

文件名称:ngraph.matrix:将 ngraph.graph 转换为矩阵表示的模块

文件大小:5KB

文件格式:ZIP

更新时间:2024-07-11 13:52:57

JavaScript

ngraph.matrix 将转换为矩阵表示的模块。 注意:这个库不应该用于大图。 对于那些对某些图形矩阵的外观感兴趣的人来说,这只是一个演示。 目前支持的矩阵: degree - 对角线上具有节点度的对角矩阵 邻接 - 如果节点 i 连接到 j,则矩阵 (i, j) = 1。 拉普拉斯 - degree - adjacency矩阵。 用法 例如,让我们计算完整图 K5(五个节点,每个节点相互连接)的度数、邻接矩阵和拉普拉斯矩阵: var create = require ( 'ngraph.generators' ) ; var getMatrix = require ( 'ngraph.matrix' ) ; var graph = create . complete ( 5 ) ; printMatrix ( 'degree' , getMatrix . degree


【文件预览】:
ngraph.matrix-master
----demo()
--------index.js(497B)
----.travis.yml(36B)
----LICENSE(1KB)
----test()
--------index.js(2KB)
----README.md(2KB)
----.gitignore(97B)
----index.js(1KB)
----package.json(576B)

网友评论