Shotest path between any two nodes in the graph

1 次查看(过去 30 天)
Hello everyone, I'm new to matlab. My doubt is that I have data which consists of nodes(road network data) that i created in the Arcmap. Now my question is that will I be able to import that data and find the distance(shortest distance) between any two nodes by using any of the algorithms like(kruskal,dijkstra's,prim's.....) If it can be done can anyone please help me to sort out the same.

回答(3 个)

Steven Lord
Steven Lord 2019-2-22
See the graph and network algorithms functionality included in MATLAB. The shortestpath, shortestpathtree, and/or distances functions may be of use to you.

Christine Tobler
Christine Tobler 2019-2-22
To read data from Arcmap, you would probably need to use the Mapping Toolbox (for example shaperead). To use the shortest path algorithm provided by the graph class, you would need to construct a graph object from this data, with each edge containing the length of the path between two nodes.
  1 个评论
Rama Sidhardha Yeleti
编辑:Rama Sidhardha Yeleti 2019-2-26
Thanks Christine Tobler for your answer and will I be able to import arc files(.mxd files)into matlab?(means can you please tell the command for the importing the .mxd files)

请先登录,再进行评论。


Keegan Carvalho
Keegan Carvalho 2019-3-2
编辑:Keegan Carvalho 2019-3-2
If I may, I have worked with ArcGIS and I don't think you can import .mxd files in Matlab. To the best of my knowledge, you can import geotiffs and shapefiles.
Regarding the shortest path objective, if you can get your data as matrices, then you could create digraphs and carry out your analysis. Some links:
You may try exporting your shapefile attribute into a csv file and then import in Matllab.
Hope this helps!

类别

Help CenterFile Exchange 中查找有关 Networks 的更多信息

产品


版本

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by