Skip to content
Snippets Groups Projects
Commit 2bb70265 authored by Marie-Anne Bizouard's avatar Marie-Anne Bizouard
Browse files

Merge branch 'master' of git.ligo.org:stochastic-public/stochastic

parents 4a22f586 c72569a8
No related branches found
No related tags found
No related merge requests found
......@@ -1154,8 +1154,9 @@ function tseries=downsampleTimeSeries(tseries, resampleRate, nResample, betaPara
% an error.
%
sampleRate = 1/tseries.deltaT;
p = 1;
q = floor(sampleRate/resampleRate);
% p = 1;
% q = floor(sampleRate/resampleRate);
[p, q] = rat(resampleRate / sampleRate);
% Resample the time series in-place - if the new sampling rate is
% the same as the old there is no need to do anything
......
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