How do I use MATLAB app designer to display a command window for my app?

89 views (last 30 days)
I am converting a program I wrote in regular scripts to an app. I want to be able to have a window in my app that I can write data to.
I have been trying to use
fprintf(object,"Some Text\n")
I have tried using the slrealtime System Log block but I cannot print to it.
I also tried writing to a file and then pulling that back into the app at the end of execution.
I need to print text to the app somehow. How should I be attacking this.
  3 Comments
Jan
Jan on 16 Mar 2022
What is "object" in your fprintf command? An edit field is the standard to display and edit text.
Tom Coté
Tom Coté on 16 Mar 2022
I tried using
fprintf(app.SystemLog,"Text");
And then I tried a different approach
lg = fopen('Log.txt','W')
fprintf(lg,"Text")
But then I could not get the text to display in my app
I'll give an edit field a shot

Sign in to comment.

Answers (1)

Jan
Jan on 16 Mar 2022
Edited: Jan on 16 Mar 2022
This is "gun-shot programming". Please read the documentation:
doc fprintf
doc fopen
Both commands do not write text to a GUI element. How did you create app.SystemLog?
Does your app.SystemLog has a property called "Value"? Try
app.SystemLog.Value = "Hello"
  4 Comments
Joseph Keogh
Joseph Keogh on 11 Sep 2023
Hey! I need to update a terminal UI element from guide to appdesigner. It includes a command box for user input. Do you have a way to allow for input?

Sign in to comment.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Products


Release

R2022a

Community Treasure Hunt

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

Start Hunting!