필터 지우기
필터 지우기

save the information of the point by clicking on the graph

조회 수: 12 (최근 30일)
khatereh
khatereh 2012년 11월 7일
Hi,
I have a series of plots that will show up one after another, I want to activate the action that for each plot the user should pick two points in the plot ( start and end) and the information of those two points will be saved for all those graphs.Can anybody know how to tackle this problem?
thanks

답변 (1개)

Evan
Evan 2012년 11월 7일
편집: Evan 2012년 11월 7일
You can get the indices of your selection by calling datacursormode and setting a custom update function. Example:
function cursortest
fig = figure;
imagesc
h = datacursormode(fig);
set(h,'UpdateFcn',@myupdatefcn)
datacursormode on
end
function txt = myupdatefcn(obj,event_obj)
% Get selection position
txt = get(event_obj,'Position')
end
That would give you the information you need to obtain and save the selected values from your plotted arrays.

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by