참조: https://kr.mathworks.com/matlabcentral/answers/100687-how-do-i-extract-data-from-matlab-figures 1. Figure를 활성화한다. 2. 활성화된 figure로부터 handle을 설정 h = gcf;(gcf function 참조: https://kr.mathworks.com/help/matlab/ref/gcf.html) 3. figure handle에서 축 (axes)는 'child' value로 호출(?)되고 각 축의 data는 축의 'child' value로 호출(?)됨 axesObjs = get(h, 'Children'); % axes handlesdataObjs = get(axesObjs, 'Children'); %ha..