comment.m

来自「MATLAB在飞行动力学和控制中应用的工具」· M 代码 · 共 27 行

M
27
字号
function comment
%COMMENT        Provides succinct comments at many inconvenient places in the
%               Simulink toolbox FDC (based upon WHY.M of Matlab 386).
%               COMMENT is called by Matlab programs from the FDC toolbox
%               if they think a computation will take some time...
%               (clever eh?)

t = clock;
rand('seed',(100*t(6))^2);
clear t

resp = [
    'Time for a coffee break (at least, if you use a 386 SX)          '
	'Time flies (doesn''t it?)                                         '
	'Time to think it over!                                           '
	'Now crunching... (numbers, that is)                              '
    'Oh! How difficult! My poor CPU can hardly handle it!             '
	'(Running out of sneaky remarks... Please, have patience...)      '
	'Watch your batteries! (just kidding).                            '
	'Check: brains connected before typing?!?                         '
	'CPU running hot! (just kidding).                                 '
	'Do NOT try to recompute this by hand...                          '];
disp(' ')
disp(resp(round(rand*10+.5),:))
disp(' ')

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?