我正在研究在Matlab中的Tarjan算法的實現。
我使用this source code來確定強連通的組件。
這是我得到的結果,我如何用Matlab查看結果(一個決定着色強連通組件的數字)?
什麼是適當的命令?一個命令查看在tarlab算法的matlab結果
G=[0 0 1 1 0 0 0;
1 0 0 0 0 0 0;
0 0 0 0 0 1 0;
0 0 0 0 1 0 0;
0 0 0 0 0 0 1;
0 0 0 1 0 0 0;
0 0 0 0 0 1 0];
tarjan(G)
ans =
7 5 4 6 0 0 0
3 0 0 0 0 0 0
1 0 0 0 0 0 0
2 0 0 0 0 0 0
什麼你在尋找什麼樣的可視化?看看[關於Tarjan算法的維基百科頁面](http://en.wikipedia.org/wiki/Tarjan%27s_strongly_connected_components_algorithm),似乎沒有一個標準數字。請澄清。 – Schorsch
這個數字決定了像這個[link](http://www.mathworks.com/help/bioinfo/ref/graphconncomp.html)那樣顏色強連通的組件,但是使用了我已經提供的源代碼。我怎樣才能將結果轉化爲一個彩色圖形,它決定了強烈連接的組件 – user3281660