以後順便記錄matlab語法好了(?)
要查詢比較方便 XDD
----
[座標檔topo.txt]
x1 y1
x2 y2
x3 y3
以此類推.....
----
[畫圖方式]
close all
clc
[popul]=textread('topo.txt');
num_p = size(popul,1) % node數
figure(1) ;
plot( popul(:,1),popul(:,2), 'ko') ; % 把每個node位置畫出來
hold on ;
for i=1:size(popul,1)
% text(239.53, 123.36, [' ' num2str(i)])
% 顯示node編號
text(popul(i,1), popul(i,2), [' ' num2str(i)]);
% 顯示node座標
% text(popul(i,1), popul(i,2), [' ' num2str(popul(i,1)) ', ' num2str(popul(i,2))]);
end
沒有留言:
張貼留言