フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

For my GUI, how can I have one button open the file then the other buttons modify that file?

1 回表示 (過去 30 日間)
shannon stoffel
shannon stoffel 2015 年 8 月 31 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
How would I link the file I open to the other buttons?

回答 (1 件)

Walter Roberson
Walter Roberson 2015 年 8 月 31 日
handles.file_identifier = fopen('TheDestinationFile', 'w');
guidata(handles);
and then in the other routines, for example:
fprintf(handles.file_identifier, '%s\n', 'hello there we have been waiting for you');
  3 件のコメント
Walter Roberson
Walter Roberson 2015 年 9 月 1 日
Tell us about how you open the file.
shannon stoffel
shannon stoffel 2015 年 9 月 1 日
[filename1,filepath1]=uigetfile({'*.*','All Files'},... 'Select Data File 1'); cd(filepath1); rawdata1=dlmread(filename1);
M = csvread(filename1,1,1)
I am not really sure to how to put your code into this. Sorry, I have no prior experience in coding.

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by