how to form branch to node incidence matrix by using tree

2 Ansichten (letzte 30 Tage)
how to form incidence matrix for this graph

Akzeptierte Antwort

Akbar
Akbar am 3 Mai 2018
Bearbeitet: Akbar am 3 Mai 2018
G = digraph([1 2 2 2 3 4], [4 1 3 4 1 3]);
G.Nodes.Name = {'a' 'b' 'c' 'd'}';
h = plot(G);
labelText = {'6' '3' '2' '4' '5' '1'};
labeledge(h,[1 2 2 2 3 4], [4 1 3 4 1 3],labelText)
I = full(incidence(G));

Weitere Antworten (0)

Kategorien

Mehr zu Graph and Network Algorithms finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by