MATLAB: MATLAB built-in function to retrieve all possible paths between two nodes

all paths between two nodesdirected graphsgraphs

Hi.
I am working with directed graphs. My graphs are really big and comprise of around 10,000 edges. I want to know MATLAB built-in function to retrieve all possible paths between two nodes.
Please guide me how to do that.
Thank you.

Best Answer

There is no built-in function for that purpose.
Are you trying to compute centrality?
https://www.mathworks.com/help/matlab/ref/graph.centrality.html
Related Question