Extract data tips values from a plot in app designer
    13 次查看(过去 30 天)
  
       显示 更早的评论
    
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

0 个评论
采纳的回答
  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 个评论
  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 Center 和 File Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



