전자시계 만드는 코드를 짰는데요
====================================
while(1)
time=clock;
H=hour(now)
M=minute(now)
S=num2str(round(time(6)))
subplot(2,3,1)
text(0.35,0.5,num2str(H),'fontsize',30); //시간
axis on
subplot(2,3,2)
text(0.35,0.5,num2str(M),'fontsize',30); //분
axis on
subplot(2,3,3)
text(0.35,0.5,num2str(S),'fontsize',30); //초
axis on
drawnow;
end
==========================
이렇게 하니까 figure에 시간이 바뀔때마다 그 위에 덧그려지네요
시간이 바뀌면 전꺼는 없어지도록 할 수 있을까요?