hey I'm trying to import the data from a doted plot i made from a script to have the values show as a list instead but don't really know where to look.
I've tried
h = findobj(gca, 'Type','dot')
doesn't work only gives an empty table when the figure is open
h = importdata('case1 SOC noV2G.fig')
gives nothing of value that i can use
the plot looks like the attached file it has a seperate dot at each point of time
don't know where to go from here all help would be appriciated!

 채택된 답변

Star Strider
Star Strider 2020년 6월 3일

0 개 추천

Try this:
F = openfig('case1 SOC noV2G.fig');
h = findobj(F, 'Type','line');
for k = 1:numel(h)
x{k} = h(k).XData;
y{k} = h(k).YData;
end
Then go do something else for a few minutes, since this is going to take a while!

댓글 수: 2

slowlearner
slowlearner 2020년 6월 13일
thank you it's official you the king!
Star Strider
Star Strider 2020년 6월 13일
As always, my pleasure!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Annotations에 대해 자세히 알아보기

제품

질문:

2020년 6월 3일

댓글:

2020년 6월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by