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

8
FOTF Toolbox/fdiffcom.m Normal file
View File

@ -0,0 +1,8 @@
function [y,h,n]=fdiffcom(f,t)
% commonly used file by many fractional differentiators
% Copyright (c) Dingyu Xue, Northeastern University, China
% Last modified 18 May, 2022
y=f; if strcmp(class(f),'function_handle'), y=f(t); end
h=t(2)-t(1); n=length(t);
end