--- scripts/general/repmat.m.orig 2009-06-18 09:12:55.000000000 +0200 +++ scripts/general/repmat.m 2009-06-18 09:13:05.000000000 +0200 @@ -64,7 +64,7 @@ x = reshape (x, idx); elseif (ndims (a) == 2 && length (idx) < 3) if (issparse (a)) - x = spkron (ones (idx), a); + x = kron (ones (idx), a); else ## indexing is now faster, so we use it rather than kron. m = rows (a); n = columns (a);