How to plot a graph without intersecting edges?

2 ビュー (過去 30 日間)
Dominik Mattioli
Dominik Mattioli 2018 年 7 月 29 日
編集済み: Dominik Mattioli 2018 年 7 月 29 日
Can you input nodal coordinates to the graph generating function or specify in the plotting function to not have intersecting edges when plotting a graph?
% Random triangulation.
dt = delaunayTriangulation(rand(101,2));
edges = unique(sort(... % Unique mx2 list of
[dt.ConnectivityList(:,1:2);... % all edges in dt.
dt.ConnectivityList(:,2:3);...
dt.ConnectivityList(:,[3 1])],...
2),'rows');
figure; triplot(dt);
% Convert dt to graph, plot.
g = graph(edges(:,1),edges(:,2));
figure; g.plot;
I'm dealing with triangulations but I'd like to use the graph class to change the triangulation for various reasons, which is why I'm converting to a graph.

回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by