How I input an array of numbers in GUI text box?

23 Ansichten (letzte 30 Tage)
Indu S
Indu S am 12 Mär. 2020
Beantwortet: Alex Mcaulley am 12 Mär. 2020
I want to enter an array of numbers in the TEXTBOX in GUI. In my code I'm converting the array of strings to array of numbers.
In the textbox when I give input as- [1 2 3 4 5].
After using
x=str2double(get(handles.edit1,'string'));
Im getting x Nan.
and get(handles.edit1,'string') = '[1 2 3 4 5]'.
What I want is x=[1,2,3,4,5]. Please suggest a solution. Thanks in advance

Antworten (1)

Alex Mcaulley
Alex Mcaulley am 12 Mär. 2020
Use str2num instead:
x=str2num(get(handles.edit1,'string'));

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by