The names of the dynSeries are stored in a row vector not in a column vector

time-shift
Ferhat Mihoubi 2013-06-13 11:01:17 +02:00 committed by Stéphane Adjemian (Charybdis)
parent b8c7f78b91
commit a190f3f71c
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ end
A = dynSeries();
A.freq = B.freq;
[A.name, IBC, junk] = unique([B.name; C.name], 'last');
[A.name, IBC, junk] = unique([B.name C.name], 'last');
tex = [B.tex; C.tex];
A.tex = tex(IBC);
A.vobs=length(IBC);