필터 지우기
필터 지우기

How to store datas from a GUI into a .txt file ?

조회 수: 4 (최근 30일)
CHAZAUD Mathilde
CHAZAUD Mathilde 2019년 5월 21일
답변: Saumya Goel 2019년 5월 24일
Hello !
I have GUI windows with several edit text boxes. I store all the inputs in arrays using these lines code:
x=getappdata(hObject,'x');
x(end+1)=str2double(handles.x(1).String);
handles.x(1).String=sprintf('block %d',numel(x)+1);
disp(x)
setappdata(hObject,'x',x);
assignin('base','x',x);
I want to write all the datas in one .txt file.
For example in my .txt I'd like something like:
x 0 10 15
y 10 20
z 20 25 30 40
K 0.5
I need a .txt file because the datas will be red by an other programm. It is a specific demand from my supervisor that the GUI generate a .txt file
How can I do that ?
I tried to wrtie in every edit text box's callback
fid = fopen('GUIDATA.txt','wt');
fprintf(fid,'%d',nx)
fclose(fid);
with
fid = fopen('GUIDATA.txt','r');
in the OpeningFcn of my GUI
But it does only save the last input...

답변 (1개)

Saumya Goel
Saumya Goel 2019년 5월 24일
I believe the issue is that you have set the permission as "w" that is every time create a new file or overwrite the contents of exisitng file. You can try setting the permission to "Append". This will append the data to existing file and hence not overwrite the content on the file.
For more information, refer to this document: ("permission" section)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by