<div dir="auto">Hello dear fieldtrip community<div dir="auto">I have been using fieldtrip for quite some time and now I am dealing with dynamic connectivity, the preprocessing of the data which I am using was done in fieldtrip as well as MVAR analysis, this is the code for calculating dynamic connectivity:</div><div dir="auto">    cfg.method = 'biosig';</div><div dir="auto">    cfg.t_ftimwin = 5;</div><div dir="auto">    cfg.toi = toi;</div><div dir="auto">    cfg.order   = 6;</div><div dir="auto">    cfg.output = 'parameters';</div><div dir="auto">    mvardata = ft_mvaranalysis(cfg, data);</div><div dir="auto">    cfg = [];</div><div dir="auto">    cfg.method = 'mvar';</div><div dir="auto">    cfg.output = 'fourier';</div><div dir="auto">    freq = ft_freqanalysis(cfg, mvardata);</div><div dir="auto">    cfg = [];</div><div dir="auto">    cfg.method = 'granger';</div><div dir="auto">    stat = ft_connectivityanalysis(cfg, freq);</div><div dir="auto">so the output of connectivity (stat) is a 4-d matrix(channel, channel, frequency, windows) which for my data is (62, 62, 126, 12)</div><div dir="auto">the values of the channel x channel are mostly negative like -13.2650 , -5.7060 or between -1 and 1. </div><div dir="auto">as my understanding the output should be between 0 and 1. So where am I doing it wrong? And if I change the method from 'granger' to 'pdc' or 'dtf' what should be the range of output? </div><div dir="auto">thank you so much in advance </div><div dir="auto">best regards</div><div dir="auto">Masoud</div></div>