Info
この質問は閉じられています。 編集または回答するには再度開いてください。
how to plot the data on the iamge
1 回表示 (過去 30 日間)
古いコメントを表示
n=5
x=rand(1,n)*n;
y=rand(1,n)*n;
node_no=(1:n)';
plot(x,y,'color','k')
text(x,y,num2str(node_no))
how to plot the nodes on the image

0 件のコメント
回答 (1 件)
Image Analyst
2015 年 6 月 16 日
You have to specify a marker in your plot() call:
plot(x, y, 'k*', 'MarkerSize', 20);
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!