Dot indexing is not supported for variables of this type when trying to write value into static text box
Show older comments
function text7_CreateFcn(hObject, eventdata, handles)
value=1;
set(handles.text7, 'String', num2str(value))
I am trying to add a value that will be determined by a slider in my GUI into the text of a static text box, but recieve the error message 'Dot indexing is not supported for variables of this type'
3 Comments
Samuel Leeney
on 16 Oct 2020
Ameer Hamza
on 16 Oct 2020
Is this created in App designer?
Samuel Leeney
on 17 Oct 2020
Accepted Answer
More Answers (2)
Fangjun Jiang
on 16 Oct 2020
Edited: Fangjun Jiang
on 16 Oct 2020
set(hObject, 'String', num2str(value))
see this comment ?
% hObject handle to edit1 (see GCBO)
% handles empty - handles not created until after all CreateFcns called
4 Comments
Samuel Leeney
on 17 Oct 2020
Samuel Leeney
on 17 Oct 2020
Rik
on 17 Oct 2020
No, set(hObject,'String',num2str(value)).
Using a programmatic GUI (and not AppDesigner) offers a wide variety of benefits. I would encourage you to check out the thread I linked in my previous comment.
Walter Roberson
on 17 Oct 2020
function text7_CreateFcn(hObject, eventdata, handles)
value = 1;
set(hObject, 'String', num2str(value))
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!