update_opt_last.m
来自「关于混沌系统的李氏指数计算等混沌系统中重要参数计算的代码」· M 代码 · 共 15 行
M
15 行
function update_opt_last;
global DS;
% Check and define current trajectory regime
if strcmp(get(DS(1).mainwin.mLast_point,'Checked'),'off')==1
DS(1).currenttrajectory = 1;
set(DS(1).mainwin.mLast_point,'Checked','on');
else
DS(1).currenttrajectory = 0;
set(DS(1).mainwin.mLast_point,'Checked','off');
end;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?