1. 程式人生 > >matlab畫無向圖,基於坐標的無向圖聯系作者

matlab畫無向圖,基於坐標的無向圖聯系作者

OS SQ ret tex floor [] TP style 處理

%函數名netplot
%使用方法輸入請help netplot
%無返回值
%函數只能處理無向圖
%作者:tiandsp
%最後修改:2012.12.26
function netplot(A,flag)
    %調用方法輸入netplot(A,flag),無返回值
    %A為鄰接矩陣或關聯矩陣
    %flag=1時處理鄰接矩陣
    %flag=2時處理關聯矩陣
    %函數只能處理無向圖
    if flag==1      %鄰接矩陣表示無向圖
        ND_netplot(A);
        return;
    end
    
    
if flag==2 %關聯矩陣表示無向圖 [m n]=size(A); %關聯矩陣變鄰接矩陣 W=zeros(m,m); for i=1:n a=find(A(:,i)~=0); W(a(1),a(2))=1; W(a(2),a(1))=1; end ND_netplot(W); return; end function ND_netplot(A) [n n]
=size(A); w=floor(sqrt(n)); h=floor(n/w); x=[]; y=[]; for i=1:h %使產生的隨機點有其範圍,使顯示分布的更廣 for j=1:w x=[x 10*rand(1)+(j-1)*10]; y=[y 10*rand(1)+(i-1)*10]; end end ed
=n-h*w; for i=1:ed x=[x 10*rand(1)+(i-1)*10]; y=[y 10*rand(1)+h*10]; end plot(x,y,r*); title(網絡拓撲圖); for i=1:n for j=i:n if A(i,j)~=0 c=num2str(A(i,j)); %將A中的權值轉化為字符型 text((x(i)+x(j))/2,(y(i)+y(j))/2,c,Fontsize,10); %顯示邊的權值 line([x(i) x(j)],[y(i) y(j)]); %連線 end text(x(i),y(i),num2str(i),Fontsize,14,color,r); %顯示點的序號 hold on; end end end end

matlab畫無向圖,基於坐標的無向圖聯系作者