📄 stagnation_point.m
字号:
function isp = stagnation_point(Qtj);isp = 2; if Qtj(isp)>0 while Qtj(isp)>0 isp = isp+1; end;elseif Qtj(isp)<0 while Qtj(isp)<0 isp = isp+1; end;end;ispu = isp -1;ispl = isp;if abs(Qtj(ispu)) < abs(Qtj(ispl)) isp = ispu;else isp = ispl;end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -