필터 지우기
필터 지우기

How to get figure data into a variable from mouse click? (alternative to ginput?)

조회 수: 25 (최근 30일)
Hi!
This is what I would like to do:
I have data that contains some real experimental values and -999.00 (no data available for that time) and I want to interpolate across the "missing" data. However, the user may not want to interpolate across the entire time frame that the data is displayed for. So I thought I would lay it out like this:
% t is time and x is the corresponding data
% Plot the data so the user can see it, red if it is a missing data point, blue otherwise:
figure
hold on
for i=1:length(x)
if x(i)==-999.00
plot(t(i),0,'r^')
else
plot(t(i),x(i),'bo')
end
end
hold off
% Get starting values for interpolation
[t1,x1]=ginput(1);
% Interpolate over necessary sections using t1,x1 as the first data point.
The only problem with using ginput is it grabs the value of the user's click, and not the closest plotted data point to the user's click. Is there a way of getting [t1,x1] to be the values of the closest data point?
Thanks!

채택된 답변

Image Analyst
Image Analyst 2013년 4월 21일
Can't you just use the min function?
% Get difference between the t array and where they clicked.
diffs = abs(t - t1);
% Find out where that difference is minimum.
[minDiff, indexAtMin] = min(diffs);
% Now we know the index (the element number)
% so find the value of t at that index.
tClosestToUserClick = t(indexAtMin);
I'm assuming you know how to interpolate just the -999 points, right (since you didn't ask about that specifically)?
  댓글 수: 1
Mel
Mel 2013년 4월 21일
Actually, knowing the index of the point that the user clicked on is better than knowing the value for me. I didn't know you could get the index from min!
And yes, I am okay with the interpolation.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

per isakson
per isakson 2013년 4월 21일
See "Data Cursor" in the on-line help.

카테고리

Help CenterFile Exchange에서 Visual Exploration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by