Select with the cursor in a plot the interval boundaries

조회 수: 11 (최근 30일)
Tom Bedkowski
Tom Bedkowski 2019년 8월 1일
답변: Tom Bedkowski 2019년 8월 6일
Hello,
is there any opportunity to choose with the cursor in a plot points to define variables.
I want to select with two cursor klicks on a plotted signal an interval for further analysis.
Thank you for help!

답변 (2개)

Samatha Aleti
Samatha Aleti 2019년 8월 5일
You can select the points on the plot and save it to workspace with a variable name. One of the ways to do this is to select “Data Tips” option, then select the data points to be saved. Now right click anywhere on the figure and select “Export Cursor Data to Workspace” and give a variable name.
Data Tips >> select data points >> right click >> Export Cursor Data to Workspace
To add data points to existing variable, right click and select “Create New Data Tip” then repeat above process.
Refer the figures attached for better understanding.
  댓글 수: 2
Tom Bedkowski
Tom Bedkowski 2019년 8월 5일
Thank you it works but i need an other solution for my problem.
Like this ...
datacursormode on;
dcm_obj = datacursormode(H);
pause
[c_info] = getCursorInfo(dcm_obj);
index1=c_info(1,1).DataIndex;
index2=c_info(1,2).DataIndex;
posi1=c_info(1,1).Position;
posi2=c_info(1,2).Position;
Tom Bedkowski
Tom Bedkowski 2019년 8월 5일
편집: Tom Bedkowski 2019년 8월 6일
But it is a little bit unconfortable to set the points, which informations i want to know.
Is there any other solution for this problem.
Maybe with a rectangular which i stretch over my signalplot.

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


Tom Bedkowski
Tom Bedkowski 2019년 8월 6일
I got it what i want.
xdata = 1:10;
ydata = rand(1,10);
plot(xdata, ydata)
[x, y] = ginput(2)
inpolygon(xdata, ydata, x([1 2 2 1]), y([1 1 2 2]))

카테고리

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