How to display Command Window in App Designer in real time
115 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
My main script contains the following simple code:
%% Initializing diary
dfile ='diary.txt';
if exist(dfile, 'file')
delete(dfile);
end
diary(dfile)
diary on
%% Main Code
disp("first")
pause(5)
disp("second")
pause(5)
disp("third")
diary off
I have a button that starts a function and inside this button I have:
% Button pushed function: StartScriptButton
function StartScriptButtonPushed(app, event)
run("Test.m");
temp = regexp(fileread('diary.txt'), '\r?\n', 'split');
app.OutputTxt.Value = temp;
end
The .m file has a diary log that starts at the start of the matlab script and eds at the end. The problem is that the values are only printed after the whole script has executed... I want them to be displayed as soon as they are done. How could this be accomplished? Am I supposed to turn off the diary and turn it on afer every time I have a print in the .m script? Ii haven't found a solution that works for me online, so sorry if the question sounds like it has been already asked.
8 Commenti
Rik
il 5 Nov 2020
Where are you telling Matlab to do anything with app? How should Matlab know what you want to happen? Did you edit the disp function?
See my comment under the answer by Mario.
Risposta accettata
Rik
il 5 Nov 2020
You need to retrieve the handle to your application, e.g. like this:
app = get(findall(0, 'Tag', 'AppUIFigure'), 'RunningAppInstance');
Then inside your script you can set the Value property of your text box, like the code below.
disp("first"),app.OutputTxt.Value="first";
pause(5)
disp("second"),app.OutputTxt.Value="second";
pause(5)
disp("third"),app.OutputTxt.Value="third";
3 Commenti
David Alejandro Ramirez Cajigas
il 23 Lug 2021
how to display a window with the Command Windows in the App Designer in the first place?
Rik
il 23 Lug 2021
@David: that is not possible. You will have to print results to a text field yourself. You can also use a diary to retrieve previous results.
Più risposte (2)
Mario Malic
il 29 Ott 2020
Set a tag, or a unique name for your app in Component Browser, under UIFigure - Identifiers, and get its handle this way:
%% in your script
app = get(findall(0, 'Tag', 'AppUIFigure'), 'RunningAppInstance');
To remove diary from previous run, otherwise it appends to it
Diary_File = 'diary.txt'
if isfile (Diary_File)
delete(Diary_File)
end
diary (Diary_File)
Updating the text
Cmd_Window_Text = fileread(Diary_File);
app.OutputTxt.Value= Cmd_Window_String;
6 Commenti
Rik
il 4 Nov 2020
app = get(findall(0, 'Tag', 'AppUIFigure'), 'RunningAppInstance');
%% Main Code
disp("first"),app.OutputTxt.Value="first";
pause(5)
disp("second"),app.OutputTxt.Value="second";
pause(5)
disp("third"),app.OutputTxt.Value="third";
John K. George
il 9 Lug 2021
Hi, I am running Matlab R2019a and getting the following attached UnrecognizedMethod error. I am able to "Save Copy As" - R2017b and R2019a will run. Could you please save to one of these previous versions and resubmit an attachment? thx.
Walter Roberson
il 4 Nov 2020
"The problem is that the values are only printed after the whole script has executed... I want them to be displayed as soon as they are done. How could this be accomplished?"
A few years ago Mathworks modified diary to flush to file as each line is generated. If you are using Mac or Linux then you can read from the diary file as it is being generated.
If you are using Windows then you have the hassle that Windows might well have locked the file. Perhaps Mathworks deliberately made it shareable when it is open; I do not know.
1 Commento
Mario Malic
il 4 Nov 2020
If you are using Mac or Linux then you can read from the diary file as it is being generated.
Confirming above for Windows as well.
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!