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!