Page 1 of 1

CRP toolbox and Webber's RQA software

Posted: Wed Jan 4, 2006 12:16
by Norbert
The RQA measures derived from the CRP toolbox and Webber's software are different by using the default settings, because they use other approaches of normalisation of the data.

The RQA software uses a specific normalisation of the computed distance matrix, whereas the CRP toolbox uses either no normalisation or a normalisation to a standard deviation of one and a mean of zero of the original data. However, with an appropriate data preparation and setting you can get the same results by using the CRP toolbox.

For compatibility use a Theiler window of size one and ensure that the data are normalised before by the same distance which is used in the RQA software; e.g. normalise with the maximal phase space diameter.

In the CRP toolbox, with the programme pss you can estimate the maximal distance of the phase space, which is reconstructed from the data. This maximal distance can be used for the normalisation of the data:

Code: Select all

 d_max=pss(x,3,5,'euclidean');
 x_norm=100*x/d_max;
Applying the command crqa on this normalised data, using a Theiler window of one and don't let crqa normalise the data (which is the defeault setting!), we will get the same RQA measures as the RQA software of Charles Webber does:

Code: Select all

 RQA=crqa(x_norm, dim, lag, e, [], [], l_min, v_min, 1, ...
          'euclidean', 'nonormalize', 'silent')

Re: CRP toolbox and Webber's RQA software

Posted: Thu Apr 15, 2010 10:33
by avoid11
How can I derive TREND parameter by using CRP Toolbox?