selecting value using ginput
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Walter Roberson
el 3 de En. de 2013
5 comentarios
Walter Roberson
el 4 de En. de 2013
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)
Ver también
Categorías
Más información sobre Data Exploration en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!