Fixed bug in filt_mc_ (gsa) routine (dataset_.dat need to be transposed).

time-shift
Stéphane Adjemian (Scylla) 2014-06-25 11:28:49 +02:00
parent 904b8025f3
commit 18eb81da55
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ if ~loadSA,
ys_mean=steady_(M_,options_,oo_);
end
% eval(options_.datafile)
Y = dataset_.data;
Y = transpose(dataset_.data);
gend = dataset_.nobs;
data_index = dataset_info.missing.aindex;
missing_value = dataset_info.missing.state;