This commit is contained in:
2023-11-14 17:10:27 +08:00
commit d5a822831c
423 changed files with 5909 additions and 0 deletions

13
FOTF Toolbox/c8mexp1x.m Normal file
View File

@ -0,0 +1,13 @@
function y=c8mexp1x(t,x,k)
% c8mexp1x - MATLAB function to express the nonlinear fractional-order
% differential equation
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last modified 28 March, 2017
% Last Modified 18 May, 2022
if k<3, y=x(k+1);
else
y=-t^0.1*ml_func([1,1.545],-t)/ml_func([1,1.445],-t)...
*exp(t)*x(1)*x(2)+exp(-2*t)-x(3)^2;
end
end