How can I plot curved lines in a graph plot?

13 ビュー (過去 30 日間)
Trygve Solstad
Trygve Solstad 2019 年 2 月 14 日
回答済み: Rostislav Teryaev 2019 年 4 月 2 日
The 'layered' layout of the plot function for a graph makes good looking plots (Figure A).
H = digraph(Adjacencymatrix);
h = plot(H,'Layout','layered','AssignLayers','alap','Sources',numel(Lind),'Sinks',leafind,'EdgeCData',1.1-H.Edges.Weight./7,'LineWidth',1,'NodeLabel',names(Lind));
However, I need to move some of the nodes in the graph plot around.
As soon as I change XData, YData of the plot, the edges of the graph plot become straight. (Figure B)
A)curved.jpgB)straight.jpg
plot() does not allow me to combine XData, YData with 'Layout'.
Exporting the figure to svg/pdf/eps does not preserve edge/node relationships, so I cannot easily move nodes in Inkscape either.
How can I get both
A) a graph plot with curved edges, and
B) determine / change some of the node positions
Thanks for helping
  1 件のコメント
Ben Ward
Ben Ward 2019 年 4 月 2 日
Sorry I don't have the answer, as I am looking for the same thing myself. I thought I would give this a bump in case anyone else sees it.

サインインしてコメントする。

回答 (1 件)

Rostislav Teryaev
Rostislav Teryaev 2019 年 4 月 2 日
layout(h,'layered')
try using this after changing XData and YData

カテゴリ

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

製品


リリース

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by