how to build a n*n weighted matrix

6 次查看(过去 30 天)
one of the variable of our work is A. that is NxN weight matrix defining the (strongly connected) network. A(i,j) is the weight of the link i->j.
please show me how i create a NxN weight matrix based on real data (like variables of input output tables)

采纳的回答

Steven Lord
Steven Lord 2024-2-27
Do you want to create the weighted adjacency matrix or do you want a digraph object that you can manipulate and analyze (asking for shortest path, distance between nodes, etc.)?
The "Edge List Graph Construction with Node Names and Edge Weights" or "Graph Construction with Tables" examples on that documentation page to which I linked above may give you a starting point for how to construct such a digraph that you can adapt to the specific format in which your data is stored.
And if you do just want the weighted adjacency matrix, if you build a digraph you can call the adjacency function on the object you built.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graph and Network Algorithms 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by