figure에 textbox를 넣어놓고 업데이트 시킬때
Tag 항목에 뭔가 특이한걸 써놓고 Tag를 찾아 그 핸들을 delete한다. % create the annotationannotationPos = [0.55 0.58 0.6 0.3];ht_tb = annotation('textbox', [0.5 0.5 0.5 0.5], 'String', {'Delete This'}, 'Tag' , 'UpdateString'); % delete the annotationdelete(findall(gcf,'Tag','somethingUnique'))ht_tb = annotation('textbox', [0.5 0.5 0.5 0.5], 'String', {'Update'}, 'Tag' , 'UpdateString');