When did the build dialog leave the command window?

1 view (last 30 days)
Why is the build information not in the main command window? When did it move to the diagnostic Viewer and how do I move it back? This is annoying, I have to perform extra clicks and watch another (6th) window for updates. How do I disable this or direct the output to the command window? Thank you.
  1 Comment
Bradley Bezzina
Bradley Bezzina on 23 Jul 2019
Edited: Bradley Bezzina on 23 Jul 2019
Updated to "Diagnostic Window" to "Diagnostic Viewer." "Build Window" not referenced in the above question.

Sign in to comment.

Answers (1)

Ajay Kumar Selvamani
Ajay Kumar Selvamani on 18 Oct 2019
Edited: Ajay Kumar Selvamani on 18 Oct 2019
Hi Bradley,
I could understand that you are not comfortable with Diagnostics Viewer. Alternatively, you can try running the simulation via command prompt using "sim" command with simulation parameters like the example given below.
simOut = sim('vdp','SimulationMode','normal','AbsTol','1e-5',...
'SaveState','on','StateSaveName','xout',...
'SaveOutput','on','OutputSaveName','yout',...
'SaveFormat', 'Dataset');
outputs = simOut.get('yout')
More information about "sim" command can be found in the below links:

Categories

Find more on Configure and View Diagnostics in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!