Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
How to produce graphs out of the following code?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
The cost matrix stands for the connectivity and the distances among nodes.
% cost=[ x x x 0 0 0
% 0 x 0 0 0 0
% 0 0 x x x 0
% 0 0 0 x x 0
% 0 0 0 0 x x
% 0 0 0 0 0 x ];
How can a graph be produced? The code can be found here: https://www.mathworks.com/matlabcentral/mlc-downloads/downloads/submissions/64476/versions/4/previews/dynamic_programming_shortestpath.m/index.html?access_key=
1 Kommentar
Antworten (1)
Walter Roberson
am 12 Jan. 2018
Have you considered using the plot() method of graph() objects? https://www.mathworks.com/help/matlab/ref/graph.plot.html
0 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!