⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 save_point.m

📁 关于混沌系统的李氏指数计算等混沌系统中重要参数计算的代码
💻 M
字号:
function Save_point;
% Save initial point to file

global DS;
global matdspath;

cd(matdspath.systems);

[newfile,newpath] = uiputfile([DS(1).name '.pnt'],'Save point to file:');
if newfile~=0
   if isempty(strfind(newfile,'.pnt'))
      namefile=[newpath newfile '.pnt'];
   else 
      namefile=[newpath newfile];
   end;

% Output structure
   Pnt.name = DS(1).name;
   Pnt.coords = DS(1).Xinit;
   Pnt.time_start=DS(1).time_start;

% Write structure to file
  
   save(namefile,'Pnt');

end;

cd(matdspath.main);

⌨️ 快捷键说明

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