how to build a n*n weighted matrix

6 visualizaciones (últimos 30 días)
Mojtaba
Mojtaba el 27 de Feb. de 2024
Comentada: Mojtaba el 2 de Mzo. de 2024
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)

Respuesta aceptada

Steven Lord
Steven Lord el 27 de Feb. de 2024
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.
  1 comentario
Mojtaba
Mojtaba el 2 de Mzo. de 2024
i wanna create the wighted anjancey matrix.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graph and Network Algorithms en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by