fixing bug in pruning at order=3

time-shift
Michel Juillard 2012-08-02 10:09:44 +02:00
parent f5f5ca1a83
commit 9e6c58572e
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ for i=1:n1
xx = x(:,m);
y(:,(i-1)*n1*n2+(j-1)*n2+k) = xx;
if j ~= i
y(:,(j-1)*n1*n2+(i-1)*n2+i) = xx;
y(:,(j-1)*n1*n2+(i-1)*n2+k) = xx;
end
end
end