selecting value using ginput
4 ビュー (過去 30 日間)
古いコメントを表示
data = dlmread('value.txt');
plot3(data(:,1),data(:,2),data(:,3),'r.')
axis off
[x,y,z] = ginput(2)
ginput gives value in command window. I want that value above cursor on image when i select point. So, how to do..?
0 件のコメント
回答 (1 件)
Walter Roberson
2013 年 1 月 3 日
5 件のコメント
Walter Roberson
2013 年 1 月 4 日
Add an axes or lineseries ButtonDownFcn callback (if you add it to axes, be sure to set() 'Hittest', 'off' on all the lines in the axes)
参考
カテゴリ
Help Center および File Exchange で Data Exploration についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!