Visualize chart in matlab

I have a graph consisting of a set of edges with corresponding start and end nodes. They were created for a specific region of the city. How can I visualize this graph in matlab

+6
source share
1 answer

Check out this feature:

doc gplot

Example:

% Plot half of a "Bucky ball" carbon molecule, placing asterisks at each node: k = 1:30; [B,XY] = bucky; gplot(B(k,k),XY(k,:),'-*') axis square 

gplot_output

+8
source

Source: https://habr.com/ru/post/918112/


All Articles