Simulink callbacks not displaying text in MATLAB command window
6 次查看(过去 30 天)
显示 更早的评论
Typically I add the following callbacks to all of my Simulink models which displays the simulation start time, end time, and elapsed time in the main command window.
StartFcn:
TS = clock;
TS_dis = ['Simulation Start Time: ' datestr(clock)];
disp(TS_dis)
StopFcn:
TE = clock;
TE_dis = ['Simulation End Time: ' datestr(clock)];
disp(TE_dis)
Elapsed_Time = etime(TE,TS);
T_Min = floor(Elapsed_Time/60);
T_Sec = rem(Elapsed_Time,60);
TElap_disp = ['Elapsed Simulation Time: ' num2str(T_Min) ' Minutes ' num2str(T_Sec) ' Seconds'];
disp(TElap_disp)
This code has worked well up to 2014a however in 2014b this code outputs to the diagnostics viewer which is much less convenient. Is there any way to change where the disp() command outputs text to?
Thanks,
Mike
0 个评论
采纳的回答
Stefanie Schwarz
2019-7-3
This output redirection is occurring due to the introduction of Diagnostic Viewer in R2014a.
Please see below MATLAB Answers Post for details and possible workarounds:
2 个评论
更多回答(5 个)
Michael
2017-8-31
This is really an annoying change! Give us disp directed to the command window for simulink callbacks back!
0 个评论
Mark Mears
2017-10-21
Old thread... still annoying... still not addressed anywhere I can find. Is there any other way to use "disp" to print results to the command window? Is there some other way to have Simulink callbacks help output data?
0 个评论
Sean de Wolski
2015-7-30
fprintf(2,'Hello World')
Will pipe to the command line in red (standard error).
1 个评论
Jim Johnson
2016-5-17
I had the same issue, the callback would output to the command window in R2014b but not in R2015b. So I used the fprintf(2,'Displayed Text') solution and it does output to the command window but in RED as if it is an error. Is there some way to circumvent this, e.g., tell fprintf to print to the command window instead of the standard error such as fprintf(command_window,'Displayed Text')?? Mathworks could define their version of fprintf to use 3 as command window and thus fprintf(3,'Displayed Text') would work.
David Brown
2017-4-20
To all,
This is kind of an old thread but I ran into the same problem and found a solution that works for me. Yair Altman created a function called cprintf that can be used instead of fprintf to print colored text to the command window. I tried cprintf with R2014a in a block callback and it sent the text to the command window. I haven't tried later versions of Matlab but I suspect that it works in later releases as well. To make it look like fprintf just use 'black' as the first parameter.
The cprintf utility is available through the FEX here:
Thanks Yair.
DJB
0 个评论
Mohamed Elattal
2017-7-7
编辑:Mohamed El-Attal
2017-7-7
Just migrated to 2016b. This is quite an annoying change!!! disp has been there since forever and changing its behaviour from model callback without a backward compatibility variant is completely unjustified!!
fprintf(2,..) doesn't do the trick.
Text is in red except the last character!
Text is displayed before the command input >>
Warning and error messages are displayed in diagnostics viewer, so information is again split.
1 个评论
Stefanie Schwarz
2019-7-3
编辑:Stefanie Schwarz
2019-7-3
If you add a newline escape sequence (\n), the entire text will be red and ">>" appears in a new line:
fprintf(2, 'Test message.\n');
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!