Error when plotting a small digraph
Mostra commenti meno recenti
Running
figure; plot(digraph([0,0,1;1,0,0;1,0,0]))
on R2016a throws the error
Error using svd
Input to SVD must not contain NaN or Inf.
Error in orth (line 15)
[Q,S] = svd(A,'econ'); %S is always square.
Error in matlab.internal.graph.MLGraph/subspaceLayout>layoutOneConnComp (line 55)
M = orth(M);
Error in matlab.internal.graph.MLGraph/subspaceLayout (line 29)
xy = layoutOneConnComp(G,dim,1:G.NodeCount,L,deg);
Error in matlab.graphics.chart.primitive.GraphPlot/layoutforce
Error in matlab.graphics.chart.primitive.GraphPlot/layout>layoutauto
Error in matlab.graphics.chart.primitive.GraphPlot/layout
Error in matlab.graphics.chart.primitive.GraphPlot
Error in digraph/plot (line 96)
hObj = matlab.graphics.chart.primitive.GraphPlot('BasicGraph', ...
Using (e.g.) the circle layout works fine. Is there a workaround that lets me use the default/force layout or must I resort to something like a try/catch?
5 Commenti
Walter Roberson
il 15 Feb 2018
What shows up for
which -all orth
Steve Huntsman
il 15 Feb 2018
Walter Roberson
il 15 Feb 2018
Odd... Interesting bug you found.
Walter Roberson
il 15 Feb 2018
I confirm there is a bug there. It appears to have been fixed in some later release.
Steve Huntsman
il 15 Feb 2018
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Graph and Network Algorithms in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!