Deleting data from a graphics

3 ビュー (過去 30 日間)
ali veli
ali veli 2019 年 4 月 18 日
コメント済み: ali veli 2019 年 4 月 18 日
Hi all,
I have two variables,x and y.
There are 100 data in these variables,plotting graphics with plot function
After manually deleting some data in the chart, the number of data automatically decreases to 100 in x and y.
How can I save the current data back to the workspace section after deleting it?
Thank you
  2 件のコメント
Rik
Rik 2019 年 4 月 18 日
I am not aware you can delete points that way, but the XData and YData properties of the line object (which is returned by the plot function) should contain your data.
ali veli
ali veli 2019 年 4 月 18 日
select data from the graph and press del to manually delete

サインインしてコメントする。

採用された回答

KSSV
KSSV 2019 年 4 月 18 日
x = rand(10,1) ; y = rand(10,1) ;
figure
hold on
for i = 1:10
h = plot(x(i),y(i),'.r') ;
end
title('delete some poits and press any key')
pause
%% Get data
a = get(gca,'Children');
xdata = get(a, 'XData');
ydata = get(a, 'YData');
zdata = get(a, 'ZData');
xdata = cell2mat(xdata) ;
ydata = cell2mat(ydata) ;
plot(xdata,ydata,'Ob')
  1 件のコメント
ali veli
ali veli 2019 年 4 月 18 日
Thank you KSSV

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by