a Line to plot by using handles ?
이전 댓글 표시
Hey Guys,
Monday Morning Question: I have got an array(1x40) holding new y-Data. Now I want to plot this data in an existing Plot. Of course i could use gca / get(...,'children') / x = get(children,'xdata') to replot, but is there anyway to add the new Data and replot by using the childrens handles ?
댓글 수: 1
I'm not quite sure I understand which children's handles you mean.
If you keep hold of your axes handles then you don't need to use children and refind them at all, just a
hold( hAxes, 'on' )
plot( hAxes,... )
will do to be able to add new data to an existing plot.
I often have my axes embedded in my main gui so obviously they are easy to retrieve the handles of, but where I spawn a new figure I tend to store its axes (or figure handle, whichever I think more useful) on the handles structure of my GUI for retrieval.
채택된 답변
추가 답변 (2개)
Max Müller
2014년 8월 18일
0 개 추천
댓글 수: 5
Max Müller
2014년 8월 18일
Adam
2014년 8월 18일
Why don't you want to call plot? It is the function you would usually use to do what you want so why try to hack something into the axes children when you can just use a function designed to do what you want?
Max Müller
2014년 8월 18일
Max Müller
2014년 8월 18일
편집: John Kelly
2015년 2월 12일
Max Müller
2014년 8월 18일
카테고리
도움말 센터 및 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!