i have developed a gui with a plotting area , now the problem is i need to transfer the results of the calculation that are being used in plotting to be shown in the text file so can you suggest me how to do that on clicking the plot button.

조회 수: 1 (최근 30일)
i have developed a gui with a plotting area , now the problem is i need to transfer the results of the calculation that are being used in plotting to be shown in the text file so can you suggest me how to do that on clicking the plot button.
  댓글 수: 1
Geoff Hayes
Geoff Hayes 2014년 6월 4일
Rohith - in the future, rather than copying and pasting the body of your question in to the header/title, keep the latter short and clear.

댓글을 달려면 로그인하십시오.

채택된 답변

Geoff Hayes
Geoff Hayes 2014년 6월 4일
Your GUI button needs a callback that will be invoked whenever the user presses the button. If the button name is pushbutton1 then your GUI m file should have something like the following defined within it
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
In the body of this function you will plot the data (since you have called this the plot button) and write the data to file:
% plot the data
% open a text file
fid = fopen('fileToWriteTo.txt','w');
if fid>0
% write the data to file (this may require a loop given your data set)
fprintf(fid,'formatString',dataToWriteA,dataToWriteB, etc...);
% close the file
fclose(fid);
end
The formatString in the above describes the format of the data (integers, floats, strings, etc.) and the dataToWriteX is the data to write to file. In the command window type help fprintf or doc fprintf for details on how to use this function.
  댓글 수: 9
Geoff Hayes
Geoff Hayes 2014년 6월 10일
편집: Geoff Hayes 2014년 6월 10일
Huh. I figured something like that you would have been able to determine on your own by running the code and observing the results. Look at the details for fopen (in the Command Window, type help fopen or doc fopen) or use this link http://www.mathworks.com/help/matlab/ref/fopen.html. Scroll down to the section on permission - File access type. Expand this section. Note the file access type for 'w'. It reads as follows
Open or create new file for writing. Discard existing contents, if any.
So if a file does not exist, a new one is created. If a file does exist, then its contents are cleared and it will be as if a new file has been created.
rohith  adulla
rohith adulla 2014년 6월 10일
thank you!!! thank you so much for your valuable time and suggestions!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2014년 6월 4일
  댓글 수: 3
rohith  adulla
rohith adulla 2014년 6월 4일
thank you yeah i got my problem solved nearly just its that i am not able to display the generated file using "type filename.txt"

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by