[Pkg-octave-devel] octave2.1_2.1.65-1_i386.changes ACCEPTED
Rafael Laboissiere
Rafael Laboissiere <rafael@debian.org>
Wed, 23 Feb 2005 14:55:45 +0100
* Paul Kienzle <pkienzle@users.sf.net> [2005-02-23 08:07]:
> I tested octave-forge against 2.1.64 and octave seg-faulted on the
> following:
>
> C = {[1], [2 3 4]; [5; 9], [6 7 8; 10 11 12]};
> D = C; D(:,:,2) = C;
> cell2mat(D)
>
> If you can confirm that this behaviour does not occur on octave 2.1.65
> I will do a new release.
Works here:
$ octave-config --version
2.1.65
$ octave -q
octave:1> C = {[1], [2 3 4]; [5; 9], [6 7 8; 10 11 12]};
octave:2> D = C; D(:,:,2) = C;
octave:3> cell2mat(D)
ans =
ans(:,:,1) =
1 2 3 4
5 6 7 8
9 10 11 12
ans(:,:,2) =
1 2 3 4
5 6 7 8
9 10 11 12
--
Rafael