Search found 194 matches

by Norbert
Fri May 16, 2014 12:23
Forum: General Discussion
Topic: Recurrence Plot for binary variable?
Replies: 6
Views: 21419

Re: Recurrence Plot for binary variable?

There is nothing to be implemented further. If you have only a binary time series, you just need to ensure that your threshold is smaller than 1. This will give the same results as using the identity relationship (i.e., threshold = 0).
by Norbert
Thu May 15, 2014 20:05
Forum: General Discussion
Topic: Recurrence Plot for binary variable?
Replies: 6
Views: 21419

Re: Recurrence Plot for binary variable?

Yes, this is possible. This is also called "recurrence on a nominal scale" or "symbolic recurrences". There are several studies already using this approach. The difference to the standard recurrence approach is that instead of a neighbourhood of some size ε a recurrence can now b...
by Norbert
Thu May 1, 2014 22:19
Forum: Bugs
Topic: bug in fnn.m ?
Replies: 1
Views: 12607

Re: bug in fnn.m ?

Thanks for your careful checking of the code. You are probably right! In the original version, the embedding used a fixed delay of tau = 1. Therefore, the considered line is a relict of these days. But as you said, it should be corrected to consider the delay. I will check the code and improve it wi...
by Norbert
Tue Apr 15, 2014 06:40
Forum: Available Software
Topic: Commandline Recurrence Plots
Replies: 4
Views: 19048

Re: Commandline Recurrence Plots

New location of the commandline RQA:
http://tocsy.pik-potsdam.de/commandline-rp.php
by Norbert
Tue Apr 15, 2014 06:33
Forum: Installation
Topic: Did not receive toolbox
Replies: 1
Views: 23267

Re: Did not receive toolbox

I'm sorry but we provide the software for free and we have to manage it aside our daily work. If we would ask for money then I could understand that potential users might be unsatisfied with the delay. But not when we provide it for free. Moreover, in the email you have received after your request t...
by Norbert
Fri Feb 28, 2014 15:27
Forum: Available Software
Topic: Fail to download CRC Toolbox
Replies: 8
Views: 22820

Re: Fail to download CRC Toolbox

great that it is now working. thanks for the reply.
by Norbert
Wed Feb 26, 2014 19:39
Forum: Available Software
Topic: Fail to download CRC Toolbox
Replies: 8
Views: 22820

Re: Fail to download CRC Toolbox

I have just checked on a windows 8.1 system using Chrome and Firefox and it was working without any problems. As far as I understand you filled out all fields but have not been able to select the research field? Which entry have you tried to select? Did you try also other selections? You are the fir...
by Norbert
Wed Feb 26, 2014 16:59
Forum: Available Software
Topic: Fail to download CRC Toolbox
Replies: 8
Views: 22820

Re: Fail to download CRC Toolbox

OK, I found an entry in the error log. There was a failure during registration. A database entry was not created. After your registration, have you seen a screen with a statement something like "registration success, access data will be send" or did you see an error message (or perhaps not...
by Norbert
Wed Feb 26, 2014 10:17
Forum: Available Software
Topic: Fail to download CRC Toolbox
Replies: 8
Views: 22820

Re: Fail to download CRC Toolbox

Hello,

I'm sorry to read that you have not been able to download. But please let me know when did you registered? I can check in the database whether there have been some issues. We can surely help you.

Best
Norbert
by Norbert
Wed Feb 19, 2014 21:51
Forum: Quantification
Topic: Computing Laminarity
Replies: 1
Views: 12436

Re: Computing Laminarity

There are different ways, depending whether the time series are in files or are already in your Matlab workspace. Let's start simple and assume your time series are the columns of an array: x = [x1, x2, x3, … x10]; size(x) gives something like N, 10, where N is the length of your time series. Now yo...
by Norbert
Wed Feb 19, 2014 21:45
Forum: Bugs
Topic: Storing data in variable skips datapoints
Replies: 2
Views: 13591

Re: Storing data in variable skips datapoints

Hi,

no it is not a bug. You have obviously used a window step of 2, therefore only every 2nd RQA value is calculated. To plot it you have to use then

R = crqa(x,m,t,e,w,ws);
plot(R(1:ws:end,5))

where ws is the window step, in your case 2
(just as an example)
by Norbert
Mon Feb 3, 2014 20:23
Forum: Applications
Topic: joint vs CRP
Replies: 4
Views: 19499

Re: joint vs CRP

as explained in the help of the jrp function, it is working only for two time series. but you can simply create your own JRP by multiplying separate single RPs: x1=rand(200,1); x2=rand(200,1); x3=rand(200,1); x4=rand(200,1); X1=crp(x1); X2=crp(x2); X3=crp(x3); X4=crp(x4); J=X1.*X2.*X3.*X4; (in this ...
by Norbert
Tue Jan 7, 2014 08:31
Forum: General Discussion
Topic: CRP toolbox general question regarding Window Size
Replies: 1
Views: 14842

Re: CRP toolbox general question regarding Window Size

regarding the window size in the GUI, the RQA measures calculated from the software (LAM, DET, ENTR, etc.) end before the Raw, input, Data ends, i.e. are shorter than the Raw Data. That, I explain to myself by thinking that, assuming our window size is 250, in order to calculate the first value of ...
by Norbert
Mon Dec 16, 2013 19:54
Forum: Quantification
Topic: RQA comparisons
Replies: 12
Views: 35032

Re: RQA comparisons

Increasing a with each iteration step causes abrupt bifurcations and at partly unpredictable time points. You can see this by comparing the bifurcation diagrams derived from both approaches. But usually we are more interested in the more subtle transitions, therefore, calculating a time series for f...