How to save a txt file through gui app designer ?

조회 수: 28 (최근 30일)
Priyadarshan Priyadarshan
Priyadarshan Priyadarshan 2022년 2월 24일
답변: Kojiro Saito 2022년 2월 25일
So my gui has a button Generate. The idea is to create a txt file when user clicks on it. I am not able to assess how should I do that?

답변 (1개)

Kojiro Saito
Kojiro Saito 2022년 2월 25일
For creating .txt files, there are various ways including save (with '-ascii' option), writatable, writematrix, writecell and fopen (with 'w' option) so on.
And with uiputfile, users can choose where to save .txt files.
Here is a sample in Button pushed callback function.
% Button pushed function: GenerateButton
function GenerateButtonPushed(app, event)
p = rand(1,10);
[file,path] = uiputfile('out.txt');
save(fullfile(path, file), 'p', '-ascii')
end

카테고리

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