How do I reset data in my GUI?
이전 댓글 표시
I have quite a few elements in my GUI, when I re-render the elements of my GUI it seems that the position property points the last element of the GUI created.
customUserInterface = figure('Name','Solution selector window');
axesHandle1 = axes('Parent',customUserInterface,'Position',[.1 .5 .375 .4]);
hold on
plot3(axesHandle,Data(m).traj(:,1),Data(m).traj(:,2),Data(m).traj(:,3),'g','LineWidth',2)
aw = axes('Parent',customUserInterface,'Position',[.7 0.1 .2 .2]);
hold on;
bar(1:numSectors, [fitFun.sectSim(1,:)]')
hold on
title('Sector Similarity');
xlabel('Sector'); ylabel('sectSim');
hold off
reset(axesHandle) %I know this line is not necessary but just trying, with or without this line the problem exists
set(axesHandle,'Position',[.1 .5 .375 .4]); %I know this line is not necessary but just trying, with or without this line the problem exists
plot3(axesHandle,mData(m).traj(:,1),mData(m).traj(:,2),mData(m).traj(:,3),'g','LineWidth',2)
Please provide a workaround. Thanks in advance.
댓글 수: 4
I don't understand what your problem is. The position property of what? What are you actually trying to achieve? Your question title talks about resetting data, but I'm not seeing anything related to that in the question body other than lines that you commented have no effect (If lines of code have no effect then remove them from your question and give the simplest code possible to show the problem).
If all you want to do is change data in a plot you are far better off keeping the plotted object's handle and editing it e.g.
hLine = plot3(...)
...
set( hLine, 'XData', newXData, 'YData', newYData, 'ZData', newZData,... )
Abhay Aradhya
2017년 6월 10일
Abhay Aradhya
2017년 6월 10일
답변 (0개)
카테고리
도움말 센터 및 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!