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

📄 get_overshoot.m

📁 其中提到遺傳學的程式碼與應用提供給次淚相向的研究者參考下載
💻 M
字号:
function overshoot=Get_overshoot(yss,y);
%% overshoot=Get_overshoot(yss,y);
%% Find overshoot (percentage) of y
%% overshoot=nan; if yss is not determined.
%% PenChen Chou. 2004/1/15

if nargin~=2, 
    error('Error! No enough input arguments (need 2)!'); 
end
if yss==eps, 
   overshoot=nan; 
else
   ymax=max(y);
   if ymax>yss
      overshoot=100*(ymax-yss)/yss;
   else
      overshoot=1;
   end
end

⌨️ 快捷键说明

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