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

📄 br_stabl.m

📁 这是国外用的研究分岔的完整的M程序
💻 M
字号:
function branch=br_stabl(branch,skip,recompute)% function st_branch=br_stabl(branch,skip,recompute)% INPUT:%	branch %	skip number of points to skip between stability computations%	recompute if nonzero recompute stability info already present% OUTPUT:%	st_branch branch with stability information% (c) DDE-BIFTOOL v. 1.02, 02/11/2000ll=length(branch.point);if ll<1   err=ll  error('BR_STABL: branch is empty!');end;if ~isfield(branch.point(1),'stability')  branch.point(1).stability=[];end;for i=1:skip+1:ll-1  if isempty(branch.point(i).stability) | recompute    branch.point(i).stability=p_stabil(branch.point(i),branch.method.stability);  end;end;if isempty(branch.point(ll).stability) | recompute  branch.point(ll).stability=p_stabil(branch.point(ll),branch.method.stability);end;return;

⌨️ 快捷键说明

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