MATLAB: Export value fromMatlab GUI

importing excel data

Hallo everybody!
So I have a little problem, I need take a value from edittext and import in Excel? I now this code: filename = 'testdata.xlsx'; A = {'Time','Temperature'; 12,98; 13,99; 14,97}; sheet = 2; xlRange = 'E1'; xlswrite(filename,A,sheet,xlRange)
In this code value edit with hand, but how take from Tag:EditText if in Edit Text was another value…
Thanks

Best Answer

theValue = get(handles.editText, 'String');
Related Question