MATLAB: How to set value of EditText to double variable in matlab

doublestring

hi all, I want to convert value from EditText to double variable I have written this code
StrString = get(handles.EditText , 'String'); xx = double(StrString);
but error occur.

Best Answer

thanks all, I get solution StrString = cell2mat( get(handles.EditText , 'String')); xx = double(StrString);