function [e,A,B]=cross_sampen(x,y,M,r); %function [e,A,B]=cross_sampen(x,y,M,r); % %Input % %x,y input data %M maximum template length %r matching tolerance %sflag flag to standardize signals(default yes/sflag=1) % %Output % %e sample entropy estimates for m=0,1,...,M-1 %A number of matches for m=1,...,M %B number of matches for m=0,...,M-1 excluding last point if ~exist('m')|isempty(m),m=5;end if ~exist('r')|isempty(r),r=.2;end if ~exist('sflag')|isempty(sflag),sflag=1;end y=y(:); x=x(:); ny=length(y); nx=length(x); if sflag>0 y=y-mean(y); sy=sqrt(mean(y.^2)); y=y/sy; x=x-mean(x); sx=sqrt(mean(x.^2)); y=y/sx; end lastrun=zeros(nx,1); run=zeros(nx,1); A=zeros(M,1); B=zeros(M,1); p=zeros(M,1); e=zeros(M,1); for i=1:ny for j=1:nx if abs(x(j)-y(i))