📄 findequations2.m
字号:
clc
global Tlimit
% guess the initialization
t=cputime;
firstvalue = 75;
ntimes = 150
t0=linspace(1, firstvalue, ntimes);
arr = zeros(1,ntimes);
for i=1:ntimes
arr(i)=equations2(t0(i));
disp('---Be patient, it is computing!---')
end
index=find(arr==min(arr))
Tlimit=t0(index)
ComputingTime=cputime-t
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -