timeindication.m

来自「关于混沌系统的李氏指数计算等混沌系统中重要参数计算的代码」· M 代码 · 共 12 行

M
12
字号
function TimeIndication
global DS;
% Check and define current output regime for time

   if strcmp(get(DS(1).mainwin.mTimeIndication,'Checked'),'off')==1
      DS(1).time_indication = 1;
      set(DS(1).mainwin.mTimeIndication,'Checked','on');
   else
      DS(1).time_indication = 0;
      set(DS(1).mainwin.mTimeIndication,'Checked','off');
   end;

⌨️ 快捷键说明

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