필터 지우기
필터 지우기

Extract data tips values from a plot in app designer

조회 수: 13 (최근 30일)
Mohd Aaquib Khan
Mohd Aaquib Khan 2023년 8월 21일
댓글: Florian Bidaud 2023년 8월 22일
I want to add the X and Y values of data tips to a matrix. How can I do it?
As an example below, I want to create a 3x2 matrix from the data tip X and Y values

채택된 답변

Florian Bidaud
Florian Bidaud 2023년 8월 21일
p = plot([0:5],[1:6])
for i = 1:6
datatipsX(i) = p.Children(i).X;
datatipsY(i) = p.Children(i).Y;
end
  댓글 수: 10
Mohd Aaquib Khan
Mohd Aaquib Khan 2023년 8월 22일
I was just testing in live script, I want to do this in an app actually.
Otherwise it is working well in a script, thanks. I will accept it as the answer.
Also, Is there a way where we can read the current figure and then identify the datatips?
i tried-
ax = gca; %or gfc
ax.Children
but its not working.
Florian Bidaud
Florian Bidaud 2023년 8월 22일
Nice !
In the live script, you can't.
Otherwise, you should be able to do that with ax.Children.Children

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Object Programming에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by