set(handles.Low,'String',Low
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
i am a newbie at Matlab. I am trying to run a code but there is a code line (set(handles.Low,'String',Low)) which gives INVALID OR DELETED OBJECT error. any solutions?
댓글 수: 0
답변 (1개)
Mehmed Saad
2020년 4월 9일
편집: Mehmed Saad
2020년 4월 9일
0 개 추천
Your figure (or gui) is closed that's why this error occured
It looks like you have some text type object on figure like title,xlabels,ylabels, ...etc
what you are trying to do is setting the textproperty 'string' equal to variable low but when MATLAB tries to access the object whose handle is passed to it, it didn't find any thing so it gives you that error.
댓글 수: 3
Sardar Jaffar Ali
2020년 4월 27일
Mehmed Saad
2020년 4월 28일
donot close it before this line
(set(handles.Low,'String',Low))
Sardar Jaffar Ali
2020년 4월 29일
이 질문은 마감되었습니다.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!