Skip to content
Snippets Groups Projects
Commit df83fa0f authored by marwan's avatar marwan
Browse files

help text updated

parent 77da2886
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,10 @@ function [a_out, b_out]=dl(x)
% A=DL(X) computes the mean of the length of the diagonal
% line structures in a recurrence plot.
%
% [A B]=DL(X) computes the mean A and the distribution of the
% length of the diagonal line structures, stored in B.
% [A B]=DL(X) computes the mean A and the lengths of the
% found diagonal lines, stored in B. In order to get the
% histogramme of the line lengths, simply call
% HIST(B,[1 MAX(B)]).
%
% Examples: X = crp(rand(200,1),1,1,.3,'fan','silent');
% [l l_dist] = dl(X);
......@@ -20,6 +22,9 @@ function [a_out, b_out]=dl(x)
% $Revision$
%
% $Log$
% Revision 3.2 2005/03/16 11:19:02 marwan
% help text modified
%
% Revision 3.1 2004/11/10 07:07:35 marwan
% initial import
%
......
......@@ -4,8 +4,10 @@ function [a_out, b_out]=tt(x)
% line structures in a recurrence plot, so called trapping
% time TT.
%
% [A B]=TT(X) computes the TT and the distribution of the
% length of the vertical line structures, stored in B.
% [A B]=TT(X) computes the TT and the lengths of the
% found vertical lines, stored in B. In order to get the
% histogramme of the line lengths, simply call
% HIST(B,[1 MAX(B)]).
%
% Examples: X = crp(rand(200,1),1,1,.3,'fan','silent');
% [v v_dist] = tt(X);
......@@ -21,6 +23,9 @@ function [a_out, b_out]=tt(x)
% $Revision$
%
% $Log$
% Revision 3.2 2005/03/16 11:19:02 marwan
% help text modified
%
% Revision 3.1 2004/11/10 07:07:35 marwan
% initial import
%
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment