Extract data tips values from a plot in app designer
16 ビュー (過去 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 で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!